diff --git a/src/overlays/actors/ovl_Boss_Goma/z_boss_goma.c b/src/overlays/actors/ovl_Boss_Goma/z_boss_goma.c index 85bd463d23..579559e6e7 100644 --- a/src/overlays/actors/ovl_Boss_Goma/z_boss_goma.c +++ b/src/overlays/actors/ovl_Boss_Goma/z_boss_goma.c @@ -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; } } diff --git a/src/overlays/actors/ovl_En_Goma/z_en_goma.c b/src/overlays/actors/ovl_En_Goma/z_en_goma.c index b027a39421..434b23c6b2 100644 --- a/src/overlays/actors/ovl_En_Goma/z_en_goma.c +++ b/src/overlays/actors/ovl_En_Goma/z_en_goma.c @@ -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; } diff --git a/src/overlays/actors/ovl_En_Goma/z_en_goma.h b/src/overlays/actors/ovl_En_Goma/z_en_goma.h index 493cf69969..bcce4b4d5f 100644 --- a/src/overlays/actors/ovl_En_Goma/z_en_goma.h +++ b/src/overlays/actors/ovl_En_Goma/z_en_goma.h @@ -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