From d6b4ce6dfee270f9a1c083e231b114239e1f4a0d Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 18 Oct 2014 20:55:10 +0000 Subject: [PATCH] A fix to RunQueuedMovie, this doesn't seem to cause regressions, and I don't that the old code was behaving incorrectly, but the code was definitely wrong, and this is correct --- BizHawk.Client.Common/movie/MovieSession.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.Common/movie/MovieSession.cs b/BizHawk.Client.Common/movie/MovieSession.cs index 707bae9f76..f2c07a5b61 100644 --- a/BizHawk.Client.Common/movie/MovieSession.cs +++ b/BizHawk.Client.Common/movie/MovieSession.cs @@ -425,7 +425,7 @@ namespace BizHawk.Client.Common QueuedMovie = null; MultiTrack.Restart(); - if (Movie.IsRecording) + if (recordMode) { Movie.StartNewRecording(); ReadOnly = false;