mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-13 10:21:18 +00:00
[ntsc-1.2] Organize n64dd declarations and convert to 1.0 addresses (#2127)
* Reorganize n64dd declarations * Fix bss * Really fix bss
This commit is contained in:
parent
aa1c7f3155
commit
8153c952f6
31 changed files with 156 additions and 178 deletions
|
@ -3077,7 +3077,7 @@ void KaleidoScope_UpdateDungeonMap(PlayState* play) {
|
|||
PRINTF("MAP DMA = %d\n", play->interfaceCtx.mapPaletteIndex);
|
||||
|
||||
#if PLATFORM_N64
|
||||
if (B_80121AF0 != NULL && B_80121AF0->unk_44 != NULL && B_80121AF0->unk_44(play)) {
|
||||
if (B_80121220 != NULL && B_80121220->unk_44 != NULL && B_80121220->unk_44(play)) {
|
||||
|
||||
} else {
|
||||
KaleidoScope_LoadDungeonMap(play);
|
||||
|
|
|
@ -31,16 +31,16 @@ void PauseMapMark_Init(PlayState* play) {
|
|||
gBossMarkScale = 1.0f;
|
||||
gLoadedPauseMarkDataTable = gPauseMapMarkDataTable;
|
||||
#if PLATFORM_N64
|
||||
if ((B_80121AF0 != NULL) && (B_80121AF0->unk_34 != NULL)) {
|
||||
B_80121AF0->unk_34(&gLoadedPauseMarkDataTable);
|
||||
if ((B_80121220 != NULL) && (B_80121220->unk_34 != NULL)) {
|
||||
B_80121220->unk_34(&gLoadedPauseMarkDataTable);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
void PauseMapMark_Clear(PlayState* play) {
|
||||
#if PLATFORM_N64
|
||||
if ((B_80121AF0 != NULL) && (B_80121AF0->unk_38 != NULL)) {
|
||||
B_80121AF0->unk_38(&gLoadedPauseMarkDataTable);
|
||||
if ((B_80121220 != NULL) && (B_80121220->unk_38 != NULL)) {
|
||||
B_80121220->unk_38(&gLoadedPauseMarkDataTable);
|
||||
}
|
||||
#endif
|
||||
gLoadedPauseMarkDataTable = NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue