mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-13 10:21:18 +00:00
Clean up uses of !PLATFORM_N64 vs PLATFORM_GC (#2134)
* Clean up uses of !PLATFORM_N64 vs PLATFORM_GC * Put N64 button colors first
This commit is contained in:
parent
3faa1c6acc
commit
53b2110373
20 changed files with 35 additions and 35 deletions
|
@ -2,7 +2,7 @@
|
|||
#include "assets/textures/parameter_static/parameter_static.h"
|
||||
#include "assets/textures/icon_item_static/icon_item_static.h"
|
||||
|
||||
#if PLATFORM_N64
|
||||
#if !PLATFORM_GC
|
||||
#define KALEIDO_COLOR_COLLECT_UNK_R 80
|
||||
#define KALEIDO_COLOR_COLLECT_UNK_G 150
|
||||
#define KALEIDO_COLOR_COLLECT_UNK_B 255
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
#include "assets/textures/icon_item_gameover_static/icon_item_gameover_static.h"
|
||||
#include "terminal.h"
|
||||
|
||||
#if PLATFORM_N64
|
||||
#if !PLATFORM_GC
|
||||
#define KALEIDO_COLOR_PROMPT_UNK_R 100
|
||||
#define KALEIDO_COLOR_PROMPT_UNK_G 100
|
||||
#define KALEIDO_COLOR_PROMPT_UNK_B 255
|
||||
|
@ -3663,7 +3663,7 @@ void KaleidoScope_Update(PlayState* play) {
|
|||
pauseCtx->state = PAUSE_STATE_CLOSING;
|
||||
WREG(2) = -6240;
|
||||
func_800F64E0(0);
|
||||
#if PLATFORM_GC && OOT_NTSC
|
||||
#if !PLATFORM_N64 && OOT_NTSC
|
||||
AudioOcarina_SetInstrument(OCARINA_INSTRUMENT_OFF);
|
||||
#endif
|
||||
} else if (CHECK_BTN_ALL(input->press.button, BTN_B)) {
|
||||
|
@ -3811,7 +3811,7 @@ void KaleidoScope_Update(PlayState* play) {
|
|||
WREG(2) = -6240;
|
||||
YREG(8) = pauseCtx->unk_204;
|
||||
func_800F64E0(0);
|
||||
#if PLATFORM_GC && OOT_NTSC
|
||||
#if !PLATFORM_N64 && OOT_NTSC
|
||||
AudioOcarina_SetInstrument(OCARINA_INSTRUMENT_OFF);
|
||||
#endif
|
||||
} else {
|
||||
|
@ -3839,7 +3839,7 @@ void KaleidoScope_Update(PlayState* play) {
|
|||
gSaveContext.buttonStatus[3] = BTN_ENABLED;
|
||||
gSaveContext.hudVisibilityMode = HUD_VISIBILITY_NO_CHANGE;
|
||||
Interface_ChangeHudVisibilityMode(HUD_VISIBILITY_ALL);
|
||||
#if PLATFORM_GC && OOT_NTSC
|
||||
#if !PLATFORM_N64 && OOT_NTSC
|
||||
AudioOcarina_SetInstrument(OCARINA_INSTRUMENT_OFF);
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue