mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-10 19:20:13 +00:00
document bug in eff_ss_d_fire (#1481)
This commit is contained in:
parent
04641a6b69
commit
3f4e4f25d4
1 changed files with 5 additions and 0 deletions
|
@ -35,7 +35,12 @@ u32 EffectSsDFire_Init(PlayState* play, u32 index, EffectSs* this, void* initPar
|
|||
this->pos = initParams->pos;
|
||||
this->velocity = initParams->velocity;
|
||||
this->accel = initParams->accel;
|
||||
|
||||
//! @bug Segment 6 is not set to the required object before setting this display list.
|
||||
//! It works out in practice because this effect is spawned from an actor who uses the same object
|
||||
//! and previously already set it to segment 6.
|
||||
this->gfx = SEGMENTED_TO_VIRTUAL(gDodongoFireDL);
|
||||
|
||||
this->life = initParams->life;
|
||||
this->rScale = initParams->scale;
|
||||
this->rScaleStep = initParams->scaleStep;
|
||||
|
|
Loading…
Reference in a new issue