mirror of
https://github.com/zeldaret/oot.git
synced 2025-02-13 17:07:44 +00:00
bossLimbDl
-> bossLimbDL
This commit is contained in:
parent
b1c0c2db76
commit
deb09606c4
3 changed files with 4 additions and 4 deletions
|
@ -2084,7 +2084,7 @@ void BossGoma_PostLimbDraw(GlobalContext* globalCtx, s32 limbIndex, Gfx** dList,
|
|||
childPos.x, childPos.y, childPos.z, childRot.x, childRot.y, childRot.z,
|
||||
sDeadLimbLifetime[limbIndex] + 100);
|
||||
if (babyGohma != NULL) {
|
||||
babyGohma->bossLimbDl = *dList;
|
||||
babyGohma->bossLimbDL = *dList;
|
||||
babyGohma->actor.objBankIndex = this->actor.objBankIndex;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -829,11 +829,11 @@ void EnGoma_Draw(Actor* thisx, GlobalContext* globalCtx) {
|
|||
break;
|
||||
|
||||
case ENGOMA_BOSSLIMB:
|
||||
if (this->bossLimbDl != NULL) {
|
||||
if (this->bossLimbDL != NULL) {
|
||||
gSPSegment(POLY_OPA_DISP++, 0x08, EnGoma_NoBackfaceCullingDlist(globalCtx->state.gfxCtx));
|
||||
gSPMatrix(POLY_OPA_DISP++, Matrix_NewMtx(globalCtx->state.gfxCtx, "../z_en_goma.c", 2114),
|
||||
G_MTX_NOPUSH | G_MTX_LOAD | G_MTX_MODELVIEW);
|
||||
gSPDisplayList(POLY_OPA_DISP++, this->bossLimbDl);
|
||||
gSPDisplayList(POLY_OPA_DISP++, this->bossLimbDL);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -72,7 +72,7 @@ typedef struct EnGoma {
|
|||
/* 0x2F4 */ s32 unk_2F4;
|
||||
/* 0x2F8 */ s16 stunTimer;
|
||||
/* 0x2FC */ Vec3f shieldKnockbackVel;
|
||||
/* 0x308 */ Gfx* bossLimbDl; // set by z_boss_goma
|
||||
/* 0x308 */ Gfx* bossLimbDL; // set by z_boss_goma
|
||||
/* 0x30C */ ColliderCylinder colCyl1;
|
||||
/* 0x358 */ ColliderCylinder colCyl2;
|
||||
} EnGoma; // size = 0x03A4
|
||||
|
|
Loading…
Add table
Reference in a new issue