fix slowdown in movie finished mode
This commit is contained in:
parent
1470add91d
commit
ec9bc9462b
|
@ -222,7 +222,7 @@ namespace BizHawk.Client.Common
|
|||
|
||||
public void HandleMovieOnFrameLoop()
|
||||
{
|
||||
if (Movie.IsPlaying && Global.Emulator.Frame >= Movie.InputLogLength)
|
||||
if (Movie.IsPlaying && !Movie.IsFinished && Global.Emulator.Frame >= Movie.InputLogLength)
|
||||
{
|
||||
HandlePlaybackEnd();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue