summaryrefslogtreecommitdiff
path: root/src/main_menu.c
diff options
context:
space:
mode:
authorGriffinR <griffin.g.richards@gmail.com>2021-10-14 14:10:42 -0400
committerGriffinR <griffin.g.richards@gmail.com>2021-10-14 15:10:41 -0400
commit37e52c4f34fa3d6bb25f670bfc77ed220962f834 (patch)
tree9856af2d06c7bf1a0920af1fdfdfae9dc9bd254d /src/main_menu.c
parent95406384f4b8291238a4822ad0bf20a9b491df72 (diff)
Document some mystery gift
Diffstat (limited to 'src/main_menu.c')
-rw-r--r--src/main_menu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main_menu.c b/src/main_menu.c
index a60cf1a28..8fd25abe1 100644
--- a/src/main_menu.c
+++ b/src/main_menu.c
@@ -90,7 +90,7 @@
* - If the user selected New Game, advance to Task_NewGameBirchSpeech_Init.
* - If the user selected Continue, advance to CB2_ContinueSavedGame.
* - If the user selected the Options menu, advance to CB2_InitOptionMenu.
- * - If the user selected Mystery Gift, advance to CB2_MysteryGift. However,
+ * - If the user selected Mystery Gift, advance to CB2_InitMysteryGift. However,
* if the wireless adapter was removed, instead advance to
* Task_DisplayMainMenuInvalidActionError.
* - Code to start a Mystery Event is present here, but is unreachable in this
@@ -1073,7 +1073,7 @@ static void Task_HandleMainMenuAPressed(u8 taskId)
DestroyTask(taskId);
break;
case ACTION_MYSTERY_GIFT:
- SetMainCallback2(c2_mystery_gift);
+ SetMainCallback2(CB2_InitMysteryGift);
DestroyTask(taskId);
break;
case ACTION_MYSTERY_EVENTS:
@@ -1081,7 +1081,7 @@ static void Task_HandleMainMenuAPressed(u8 taskId)
DestroyTask(taskId);
break;
case ACTION_EREADER:
- SetMainCallback2(c2_ereader);
+ SetMainCallback2(CB2_InitEReader);
DestroyTask(taskId);
break;
case ACTION_INVALID: