remove tastudio hack that I'm convinced is either 1) does nothing 2) causes bugs 3) fixes something that should be handled in a different place in the code

This commit is contained in:
adelikat 2020-06-13 11:47:21 -05:00
parent 51e1ee3a46
commit 4c77ebd3d1
1 changed files with 0 additions and 7 deletions

View File

@ -324,13 +324,6 @@ namespace BizHawk.Client.Common
private void LatchInputToLog()
{
var input = Movie.GetInputState(Movie.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 (Movie.Emulator.Frame == 0) // Hacky
{
HandleFrameAfter(); // Frame 0 needs to be handled.
}
if (input == null)
{
HandleFrameAfter();