diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2017-10-21 17:32:35 +0200 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2017-10-21 17:32:35 +0200 |
commit | 3d1c16523e277b0b4044e685aa118c15aaaeffe9 (patch) | |
tree | 5e1561b2ee508383dc50e3cc7fc473edfb21b2d2 /src/battle_2.c | |
parent | afd42c8e145c77fbf07799a54aec405766eed45c (diff) |
start working on battle controllers, especially player
Diffstat (limited to 'src/battle_2.c')
-rw-r--r-- | src/battle_2.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/battle_2.c b/src/battle_2.c index 16c07114a..c50295eba 100644 --- a/src/battle_2.c +++ b/src/battle_2.c @@ -2257,7 +2257,7 @@ static void sub_803939C(void) sub_8056A3C(0x18, 8, 0x1D, 0xD, 0); sub_814F9EC(gText_BattleYesNoChoice, 0xC); gBattleCommunication[CURSOR_POSITION] = 1; - BattleCreateCursorAt(1); + BattleCreateYesNoCursorAt(1); gBattleCommunication[MULTIUSE_STATE]++; } break; @@ -2267,9 +2267,9 @@ static void sub_803939C(void) if (gBattleCommunication[CURSOR_POSITION] != 0) { PlaySE(SE_SELECT); - BattleDestroyCursorAt(gBattleCommunication[CURSOR_POSITION]); + BattleDestroyYesNoCursorAt(gBattleCommunication[CURSOR_POSITION]); gBattleCommunication[CURSOR_POSITION] = 0; - BattleCreateCursorAt(0); + BattleCreateYesNoCursorAt(0); } } else if (gMain.newKeys & DPAD_DOWN) @@ -2277,9 +2277,9 @@ static void sub_803939C(void) if (gBattleCommunication[CURSOR_POSITION] == 0) { PlaySE(SE_SELECT); - BattleDestroyCursorAt(gBattleCommunication[CURSOR_POSITION]); + BattleDestroyYesNoCursorAt(gBattleCommunication[CURSOR_POSITION]); gBattleCommunication[CURSOR_POSITION] = 1; - BattleCreateCursorAt(1); + BattleCreateYesNoCursorAt(1); } } else if (gMain.newKeys & A_BUTTON) |