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:
parent
1e0ae62041
commit
78c1482720
|
@ -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
|
// 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
|
// 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).
|
// 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;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue