Revert "here's how I think input display should work. also fixes your bug. also breaks something that had this comment (maybe)"

This reverts commit d4a48a8ee1.
This commit is contained in:
adelikat 2018-11-18 10:43:11 -06:00
parent 9d6997692f
commit 288baf568d
1 changed files with 4 additions and 9 deletions

View File

@ -133,10 +133,10 @@ namespace BizHawk.Client.Common
var input = Movie.GetInputState(Global.Emulator.Frame);
// adelikat: TODO: this is likely the source of frame 0 TAStudio bugs, I think the intent is to check if the movie is 0 length?
//if (Global.Emulator.Frame == 0) // Hacky
//{
// HandleMovieAfterFrameLoop(); // Frame 0 needs to be handled.
//}
if (Global.Emulator.Frame == 0) // Hacky
{
HandleMovieAfterFrameLoop(); // Frame 0 needs to be handled.
}
if (input == null)
{
@ -327,10 +327,6 @@ namespace BizHawk.Client.Common
{
HandlePlaybackEnd();
}
else if (Movie.IsPlaying && !Movie.IsFinished)
{
LatchInputFromLog();
}
}
public bool HandleMovieLoadState(string path)
@ -460,7 +456,6 @@ namespace BizHawk.Client.Common
else
{
Movie.StartNewPlayback();
LatchInputFromLog();
}
}