fix slowdown in movie finished mode

This commit is contained in:
adelikat 2015-01-16 17:56:56 +00:00
parent 1470add91d
commit ec9bc9462b
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}