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/z_kaleido_setup.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/z_kaleido_setup.c')
| -rw-r--r-- | src/code/z_kaleido_setup.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/code/z_kaleido_setup.c b/src/code/z_kaleido_setup.c index 987527712..1e5407165 100644 --- a/src/code/z_kaleido_setup.c +++ b/src/code/z_kaleido_setup.c @@ -177,16 +177,16 @@ void KaleidoSetup_Init(PlayState* play) { View_Init(&pauseCtx->view, play->state.gfxCtx); #if PLATFORM_N64 - if ((B_80121AF0 != NULL) && (B_80121AF0->unk_3C != NULL)) { - B_80121AF0->unk_3C(); + if ((B_80121220 != NULL) && (B_80121220->unk_3C != NULL)) { + B_80121220->unk_3C(); } #endif } void KaleidoSetup_Destroy(PlayState* play) { #if PLATFORM_N64 - if ((B_80121AF0 != NULL) && (B_80121AF0->unk_40 != NULL)) { - B_80121AF0->unk_40(); + if ((B_80121220 != NULL) && (B_80121220->unk_40 != NULL)) { + B_80121220->unk_40(); } #endif } |
