Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,9 @@ void EggAutonomous::program(SingleSwitchProgramEnvironment& env, ProControllerCo
change_view_to_judge(env.console, context, language);
}

// go back to overworld
mash_B_until_y_comm_icon(env.console, context, "Cannot return to overworld.");

if (AUTO_SAVING == AutoSave::AfterStartAndKeep){
save_game(env.console, context);
m_num_eggs_in_storage_when_game_saved = num_eggs_in_column_0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ void navigate_to_menu_app(
void menus_to_mainmenu(VideoStream& stream, ProControllerContext& context);
void menus_to_boxsystem(VideoStream& stream, ProControllerContext& context);


// saves the game. starting from the menu or overworld
void save_game(VideoStream& stream, ProControllerContext& context);

// Used to wait until Y-Comm icon shows up.
Expand Down
Loading