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/rom_8011DC0.c | |
parent | 9d8a43a1fb5d83680bd8509fa3fbc3b491b8bbf8 (diff) |
Fix Menu and List Menu input defines
Diffstat (limited to 'src/rom_8011DC0.c')
-rw-r--r-- | src/rom_8011DC0.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rom_8011DC0.c b/src/rom_8011DC0.c index 41f7eeee7..c5ad67fbc 100644 --- a/src/rom_8011DC0.c +++ b/src/rom_8011DC0.c @@ -1105,7 +1105,7 @@ void sub_80134E8(u8 taskId) RedrawListMenu(data->listTaskId); break; case 0: - id = ListMenuHandleInputGetItemId(data->listTaskId); + id = ListMenu_ProcessInput(data->listTaskId); if (gMain.newKeys & A_BUTTON && id != -1) { // this unused variable along with the assignment is needed to match @@ -2176,7 +2176,7 @@ void sub_8014F48(u8 taskId) RedrawListMenu(data->listTaskId); break; case 0: - id = ListMenuHandleInputGetItemId(data->listTaskId); + id = ListMenu_ProcessInput(data->listTaskId); if (gMain.newKeys & A_BUTTON && id != -1) { // this unused variable along with the assignment is needed to match @@ -2340,7 +2340,7 @@ void sub_80152F4(u8 taskId) break; case 0: if (data->field_13 != 0) - id = ListMenuHandleInputGetItemId(data->listTaskId); + id = ListMenu_ProcessInput(data->listTaskId); if (data->field_14 > 120) { if (data->field_0->arr[0].field_1A_0 == 1 && !data->field_0->arr[0].unk.field_0.unk_0a_7) |