1
0
mirror of https://github.com/zeldaret/oot.git synced 2024-09-21 04:24:43 +00:00

document bug in eff_ss_d_fire (#1481)

This commit is contained in:
fig02 2022-12-30 07:47:54 -05:00 committed by GitHub
parent 04641a6b69
commit 3f4e4f25d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;