Movies: revert previous 2 commits, too many difficulties around movies in 'finished' mode
This commit is contained in:
parent
1fe1138a91
commit
0b8e4ab6b1
|
@ -162,7 +162,15 @@ namespace BizHawk.Client.Common
|
||||||
}
|
}
|
||||||
else
|
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);
|
var result = Movie.ExtractInputLog(reader, out var errorMsg);
|
||||||
if (!result)
|
if (!result)
|
||||||
{
|
{
|
||||||
|
@ -170,11 +178,6 @@ namespace BizHawk.Client.Common
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Movie.IsPlayingOrFinished())
|
|
||||||
{
|
|
||||||
Movie.SwitchToRecord();
|
|
||||||
}
|
|
||||||
|
|
||||||
LatchInputToUser();
|
LatchInputToUser();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue