Rewinder - remove Movie active check when deciding about keeping the last frame of a rewind. It seems to work without it, but more significantly, rewind is not MOVIE SAFE, it used to be disabled while recording, and somehow got enabled, I guess someone wanted their desyncs

This commit is contained in:
adelikat 2020-05-17 15:06:23 -05:00
parent 1e0ae62041
commit 78c1482720
1 changed files with 1 additions and 1 deletions

View File

@ -300,7 +300,7 @@ namespace BizHawk.Client.Common
// each one records how to get back to the previous state, once we've gone back to
// the second item, it's already resulted in the first state being loaded. The
// first item is just a junk entry with the initial value of _lastState (0 bytes).
if (_rewindBuffer.Count <= 1 || (Global.MovieSession.Movie.IsActive() && Global.MovieSession.Movie.InputLogLength == 0))
if (_rewindBuffer.Count <= 1)
{
break;
}