when automatic movie backups are enabled, take a backup when the movie is closed without saving

This commit is contained in:
zeromus 2016-01-27 20:33:31 -06:00
parent 81c7161651
commit 9c698011f6
1 changed files with 2 additions and 0 deletions
BizHawk.Client.EmuHawk

View File

@ -553,6 +553,8 @@ namespace BizHawk.Client.EmuHawk
private void StopMovieWithoutSavingMenuItem_Click(object sender, EventArgs e)
{
if (Global.Config.EnableBackupMovies)
Global.MovieSession.Movie.SaveBackup();
StopMovie(saveChanges: false);
}