From 9a1e18045efeb35d2c9d9e51c32d50a525ee3467 Mon Sep 17 00:00:00 2001 From: "phillip.grimsrud" Date: Mon, 28 May 2012 03:32:27 +0000 Subject: [PATCH] Fixed rewind to still work if there is no active movie. --- BizHawk.MultiClient/Rewind.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.MultiClient/Rewind.cs b/BizHawk.MultiClient/Rewind.cs index 042b8ec796..37bf02bc22 100644 --- a/BizHawk.MultiClient/Rewind.cs +++ b/BizHawk.MultiClient/Rewind.cs @@ -176,7 +176,7 @@ namespace BizHawk.MultiClient { for (int i = 0; i < frames; i++) { - if (RewindBuf.Count == 0 || 0 == Global.MovieSession.Movie.Length()) + if (RewindBuf.Count == 0 || (true == Global.MovieSession.Movie.Loaded && 0 == Global.MovieSession.Movie.Length())) return; if (LastState.Length < 0x10000) Rewind64K();