summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTal Hayon <talhayon1@gmail.com>2022-04-03 18:30:22 +0300
committerTal Hayon <talhayon1@gmail.com>2022-04-03 18:30:22 +0300
commit8c1d3f3e6601064dcea97c5e7ab6d8286fc4eac6 (patch)
tree7e31c103dff7fd77837874311602c37b45bd4ad4 /src
parent4cec2c4d5528e41b541910345cb63aa8fd625e49 (diff)
subtask2: Use negative constants where appropriate
Diffstat (limited to 'src')
-rw-r--r--src/subtask2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/subtask2.c b/src/subtask2.c
index 6435abd4..27982f1d 100644
--- a/src/subtask2.c
+++ b/src/subtask2.c
@@ -152,7 +152,7 @@ void sub_080A5AF4(void) {
SetPopupState(2, 0);
#ifndef EU
if (gSaveHeader->language == 0) {
- gScreen.bg1.yOffset = 0xfffc;
+ gScreen.bg1.yOffset = -4;
} else {
gScreen.bg1.yOffset = 0;
}
@@ -639,7 +639,7 @@ void MenuFadeIn(u32 param_1, u32 param_2) {
gUI.nextToLoad = 1;
}
gUI.field_0x6 = 0;
- gUI.isLoading = 0xffff;
+ gUI.isLoading = -1;
gUI.fadeInTime = 0x20;
gMain.substate = GAMEMAIN_SUBTASK;
SetFade(5, 0x20);