SDL2: Write battery to disk when ROMs are hot-swapped

This commit is contained in:
Matthew Coppola 2019-11-02 23:50:29 -04:00
parent 70542137f2
commit 139ae8cc08
1 changed files with 2 additions and 4 deletions

View File

@ -406,14 +406,12 @@ static bool handle_pending_command(void)
return false;
}
case GB_SDL_RESET_COMMAND:
GB_save_battery(&gb, battery_save_path_ptr);
return true;
case GB_SDL_NO_COMMAND:
return false;
case GB_SDL_RESET_COMMAND:
case GB_SDL_NEW_FILE_COMMAND:
GB_save_battery(&gb, battery_save_path_ptr);
return true;
case GB_SDL_QUIT_COMMAND: