diff options
| author | Sonic Dreamcaster <alejandro.asenjo88@gmail.com> | 2025-01-07 05:22:48 -0300 |
|---|---|---|
| committer | Sonic Dreamcaster <alejandro.asenjo88@gmail.com> | 2025-01-07 05:22:48 -0300 |
| commit | 9276fc3b2fdb66a8367092f3b23f4038de6fc9af (patch) | |
| tree | 9c55a25327ba9446e4642547ec9ab7798848ad28 | |
| parent | a2b4f3378d97a0b6ff6f027ae6cf92d05c0a88f7 (diff) | |
Sector Z AVOID_UB Correction
| -rw-r--r-- | src/overlays/ovl_i4/fox_sz.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/overlays/ovl_i4/fox_sz.c b/src/overlays/ovl_i4/fox_sz.c index 0e8c1b0f..ba315f98 100644 --- a/src/overlays/ovl_i4/fox_sz.c +++ b/src/overlays/ovl_i4/fox_sz.c @@ -1899,7 +1899,7 @@ void SectorZ_LoadLevelObjects(void) { } if (CVarGetInteger("gSzActorFix", 0) == 1) { - j = 47; + j = 48; } else { j = 50; } @@ -1928,7 +1928,6 @@ void SectorZ_LoadLevelObjects(void) { actor++; } } - Boss_Initialize(greatFox); greatFox->obj.status = OBJ_INIT; |
