diff options
| author | cadmic <cadmic24@gmail.com> | 2024-09-04 11:56:24 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-05 03:56:24 +0900 |
| commit | 8153c952f6d74e29b12aa03f1503530d5a39e732 (patch) | |
| tree | 4c5b431f6515375d6c1322c0edb029c1d1e4e688 /src/code/game.c | |
| parent | aa1c7f31558139d6bc4209edb5edc27c71ca3cc1 (diff) | |
[ntsc-1.2] Organize n64dd declarations and convert to 1.0 addresses (#2127)
* Reorganize n64dd declarations
* Fix bss
* Really fix bss
Diffstat (limited to 'src/code/game.c')
| -rw-r--r-- | src/code/game.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/code/game.c b/src/code/game.c index 07007f6a7..e00bc7406 100644 --- a/src/code/game.c +++ b/src/code/game.c @@ -73,8 +73,8 @@ void GameState_SetFBFilter(Gfx** gfxP) { void func_800C4344(GameState* gameState) { #if PLATFORM_N64 - if (B_80121AE2 != 0) { - func_801C86F0_unknown(); + if (D_80121212 != 0) { + func_801C7E78(); } #elif OOT_DEBUG Input* selectedInput; @@ -245,8 +245,8 @@ void func_800C49F4(GraphicsContext* gfxCtx) { gSPDisplayList(OVERLAY_DISP++, newDlist); #if PLATFORM_N64 - if (B_80121AE2 != 0) { - func_801C7760_unknown(&newDlist); + if (D_80121212 != 0) { + func_801C6EA0(&newDlist); } #endif @@ -271,11 +271,11 @@ void GameState_Update(GameState* gameState) { gameState->main(gameState); #if PLATFORM_N64 - if (B_80121AE2 != 0) { - func_801C86F0_unknown(); + if (D_80121212 != 0) { + func_801C7E78(); } - if ((B_80121AF0 != NULL) && (B_80121AF0->unk_74 != NULL)) { - B_80121AF0->unk_74(gameState); + if ((B_80121220 != NULL) && (B_80121220->unk_74 != NULL)) { + B_80121220->unk_74(gameState); } #endif |
