mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-13 11:24:40 +00:00
Name a few more things, more KaleidoScope_DrawQuestStatus touches
This commit is contained in:
parent
5337eddf3a
commit
c143fe843a
8 changed files with 115 additions and 89 deletions
|
@ -526,11 +526,11 @@ void func_80111070(void) {
|
|||
R_MINIMAP_COLOR(2) = 255;
|
||||
}
|
||||
|
||||
R_PAUSE_SONG_NOTE_Y(OCARINA_BTN_A) = 0;
|
||||
R_PAUSE_SONG_NOTE_Y(OCARINA_BTN_C_DOWN) = 0;
|
||||
R_PAUSE_SONG_NOTE_Y(OCARINA_BTN_C_RIGHT) = 0;
|
||||
R_PAUSE_SONG_NOTE_Y(OCARINA_BTN_C_LEFT) = 0;
|
||||
R_PAUSE_SONG_NOTE_Y(OCARINA_BTN_C_UP) = 0;
|
||||
R_PAUSE_SONG_OCA_BTN_Y(OCARINA_BTN_A) = 0;
|
||||
R_PAUSE_SONG_OCA_BTN_Y(OCARINA_BTN_C_DOWN) = 0;
|
||||
R_PAUSE_SONG_OCA_BTN_Y(OCARINA_BTN_C_RIGHT) = 0;
|
||||
R_PAUSE_SONG_OCA_BTN_Y(OCARINA_BTN_C_LEFT) = 0;
|
||||
R_PAUSE_SONG_OCA_BTN_Y(OCARINA_BTN_C_UP) = 0;
|
||||
|
||||
VREG(26) = 0;
|
||||
VREG(27) = 0;
|
||||
|
@ -557,7 +557,7 @@ void func_80111070(void) {
|
|||
R_OCARINA_BUTTONS_YPOS(2) = 176;
|
||||
R_OCARINA_BUTTONS_YPOS(3) = 172;
|
||||
R_OCARINA_BUTTONS_YPOS(4) = 170;
|
||||
VREG(50) = 30;
|
||||
R_OCARINA_BUTTONS_APPEAR_ALPHA_STEP = 30;
|
||||
R_OCARINA_BUTTONS_YPOS_OFFSET = 0;
|
||||
VREG(52) = -16;
|
||||
VREG(53) = 230;
|
||||
|
|
|
@ -29,8 +29,9 @@ void KaleidoSetup_Update(PlayState* play) {
|
|||
R_PAUSE_CURSOR_LEFT_X = -175;
|
||||
R_PAUSE_CURSOR_RIGHT_X = 155;
|
||||
|
||||
pauseCtx->unk_1EA = 0;
|
||||
pauseCtx->unk_1E4_ps6_ = PAUSE_S6_1;
|
||||
pauseCtx->unk_1EA_PageSwitchTimer__ = 0;
|
||||
pauseCtx->unk_1E4_ps6_ =
|
||||
PAUSE_S6_1_SWITCH_PAGE_; // irrelevant? reset in PAUSE_STATE_1 by KaleidoScopeCall_Update
|
||||
|
||||
if (ZREG(48) == 0) {
|
||||
pauseCtx->eye.x = sKaleidoSetupEyeX0[pauseCtx->pageIndex];
|
||||
|
@ -69,7 +70,7 @@ void KaleidoSetup_Init(PlayState* play) {
|
|||
pauseCtx->state = PAUSE_STATE_0;
|
||||
pauseCtx->debugState = 0;
|
||||
pauseCtx->alpha = 0;
|
||||
pauseCtx->unk_1EA = 0;
|
||||
pauseCtx->unk_1EA_PageSwitchTimer__ = 0;
|
||||
pauseCtx->unk_1E4_ps6_ = PAUSE_S6_0_IDLE_;
|
||||
pauseCtx->mode = 0;
|
||||
pauseCtx->pageIndex = PAUSE_ITEM;
|
||||
|
|
|
@ -2914,7 +2914,7 @@ void Message_DrawMain(PlayState* play, Gfx** p) {
|
|||
|
||||
if (1) {}
|
||||
if (sOcarinaButtonAlphaValues[i] != 255) {
|
||||
sOcarinaButtonAlphaValues[i] += VREG(50);
|
||||
sOcarinaButtonAlphaValues[i] += R_OCARINA_BUTTONS_APPEAR_ALPHA_STEP;
|
||||
if (sOcarinaButtonAlphaValues[i] >= 255) {
|
||||
sOcarinaButtonAlphaValues[i] = 255;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue