diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2019-02-02 11:04:38 +0100 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2019-02-02 11:04:38 +0100 |
commit | 23b240ab658e0be6b114c36864fea19ff23eb61b (patch) | |
tree | 2fca842f08f3b701f6f1aa1135d8cdfcea56719b /src/script_menu.c | |
parent | 9d8a43a1fb5d83680bd8509fa3fbc3b491b8bbf8 (diff) |
Fix Menu and List Menu input defines
Diffstat (limited to 'src/script_menu.c')
-rw-r--r-- | src/script_menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/script_menu.c b/src/script_menu.c index a4f4c6086..7180bfc60 100644 --- a/src/script_menu.c +++ b/src/script_menu.c @@ -1170,9 +1170,9 @@ static void Task_HandleMultichoiceInput(u8 taskId) sub_80E2A94(tMultichoiceId); } - if (selection != -2) + if (selection != MENU_NOTHING_CHOSEN) { - if (selection == -1) + if (selection == MENU_B_PRESSED) { if (tIgnoreBPress) return; |