Fixed rewind to still work if there is no active movie.
This commit is contained in:
parent
0118b34b41
commit
9a1e18045e
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue