diff options
author | Marcus Huderle <huderlem@gmail.com> | 2019-03-24 13:09:46 -0500 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2019-03-24 13:15:37 -0500 |
commit | 456cc3a6f02b6f45753b47e5ea37bd92e616f089 (patch) | |
tree | 6bda4b048a176415741bc253d94f6ffd980dbbe2 /src/main_menu.c | |
parent | d3ff307f9f1067ae1a893bed1938417eb0c07c83 (diff) |
Split out the remaining wireless-related files
Diffstat (limited to 'src/main_menu.c')
-rw-r--r-- | src/main_menu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main_menu.c b/src/main_menu.c index e6e29d942..cbd257cb1 100644 --- a/src/main_menu.c +++ b/src/main_menu.c @@ -525,7 +525,7 @@ enum ACTION_OPTION, ACTION_MYSTERY_GIFT, ACTION_MYSTERY_EVENTS, - ACTION_UNKNOWN, // TODO: change when rom_8011DC0 decompiled + ACTION_EREADER, ACTION_INVALID }; @@ -1033,7 +1033,7 @@ static void Task_HandleMainMenuAPressed(u8 taskId) } else { - action = ACTION_UNKNOWN; + action = ACTION_EREADER; } break; case 3: @@ -1082,7 +1082,7 @@ static void Task_HandleMainMenuAPressed(u8 taskId) SetMainCallback2(CB2_InitMysteryEventMenu); DestroyTask(taskId); break; - case ACTION_UNKNOWN: + case ACTION_EREADER: SetMainCallback2(sub_801867C); DestroyTask(taskId); break; |