Movies: don't redo steps if movie finished

This commit is contained in:
alyosha-tas 2020-11-20 18:11:38 -05:00
parent d676036359
commit 1fe1138a91
1 changed files with 1 additions and 5 deletions

View File

@ -170,11 +170,7 @@ namespace BizHawk.Client.Common
return false;
}
if (Movie.IsFinished())
{
Movie.StartNewRecording();
}
else if (Movie.IsPlayingOrFinished())
if (Movie.IsPlayingOrFinished())
{
Movie.SwitchToRecord();
}