From aa38ad24a2664cf7359910fe8e76ef643a02c729 Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 14 Nov 2014 00:00:18 +0000 Subject: [PATCH] Bk2 movies - don't save when switching to play, note: when stopping a movie in play mode, the movie will not be saved unless there are changes, the Save() that was removed here masked problem with potential failure to save. As of this commit, bk2 movies rely on the Changes flag to be accurately set --- BizHawk.Client.Common/movie/bk2/Bk2Movie.ModeApi.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/BizHawk.Client.Common/movie/bk2/Bk2Movie.ModeApi.cs b/BizHawk.Client.Common/movie/bk2/Bk2Movie.ModeApi.cs index 674eab2af0..06e175374e 100644 --- a/BizHawk.Client.Common/movie/bk2/Bk2Movie.ModeApi.cs +++ b/BizHawk.Client.Common/movie/bk2/Bk2Movie.ModeApi.cs @@ -52,7 +52,6 @@ namespace BizHawk.Client.Common public virtual void SwitchToPlay() { _mode = Moviemode.Play; - Save(); } public virtual bool Stop(bool saveChanges = true)