summaryrefslogtreecommitdiff
path: root/src/battle_controller_player.c
diff options
context:
space:
mode:
authorGriffinR <griffin.g.richards@gmail.com>2021-04-16 01:30:03 -0400
committerGitHub <noreply@github.com>2021-04-16 01:30:03 -0400
commitc1da6b29bc853df1a42f08adb9b141de747dae55 (patch)
tree4a29484dd11d60bb13edc449adaa2e409f444af4 /src/battle_controller_player.c
parent70d0b81fe08e4b3baa5c3c7f8e81909c74477eb7 (diff)
parentf94540c2b875cff0085149b95728d2f0a0c610eb (diff)
Merge pull request #1405 from GriffinRichards/constants-display
Add more usage of DISPLAY constants, misc REG constants
Diffstat (limited to 'src/battle_controller_player.c')
-rw-r--r--src/battle_controller_player.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/battle_controller_player.c b/src/battle_controller_player.c
index e7801d0e4..34fcb82f6 100644
--- a/src/battle_controller_player.c
+++ b/src/battle_controller_player.c
@@ -630,7 +630,7 @@ static u32 HandleMoveInputUnused(void)
{
PlaySE(SE_SELECT);
gBattle_BG0_X = 0;
- gBattle_BG0_Y = 0x140;
+ gBattle_BG0_Y = DISPLAY_HEIGHT * 2;
var = 0xFF;
}
if (JOY_NEW(DPAD_LEFT) && gMoveSelectionCursor[gActiveBattler] & 1)
@@ -2568,7 +2568,7 @@ static void HandleChooseActionAfterDma3(void)
if (!IsDma3ManagerBusyWithBgCopy())
{
gBattle_BG0_X = 0;
- gBattle_BG0_Y = 160;
+ gBattle_BG0_Y = DISPLAY_HEIGHT;
gBattlerControllerFuncs[gActiveBattler] = HandleInputChooseAction;
}
}
@@ -2610,7 +2610,7 @@ static void HandleChooseMoveAfterDma3(void)
if (!IsDma3ManagerBusyWithBgCopy())
{
gBattle_BG0_X = 0;
- gBattle_BG0_Y = 320;
+ gBattle_BG0_Y = DISPLAY_HEIGHT * 2;
gBattlerControllerFuncs[gActiveBattler] = HandleInputChooseMove;
}
}