Movies: revert previous 2 commits, too many difficulties around movies in 'finished' mode

This commit is contained in:
alyosha-tas 2020-11-20 19:20:55 -05:00
parent 1fe1138a91
commit 0b8e4ab6b1
1 changed files with 9 additions and 6 deletions

View File

@ -162,7 +162,15 @@ namespace BizHawk.Client.Common
}
else
{
// Don't enter recording mode if state load fails
if (Movie.IsFinished())
{
Movie.StartNewRecording();
}
else if (Movie.IsPlayingOrFinished())
{
Movie.SwitchToRecord();
}
var result = Movie.ExtractInputLog(reader, out var errorMsg);
if (!result)
{
@ -170,11 +178,6 @@ namespace BizHawk.Client.Common
return false;
}
if (Movie.IsPlayingOrFinished())
{
Movie.SwitchToRecord();
}
LatchInputToUser();
}