From e50f81d54c901a3709f8c9be1e8e5466d087735a Mon Sep 17 00:00:00 2001 From: adelikat Date: Mon, 29 Jun 2015 22:08:31 -0400 Subject: [PATCH] Tastudio - remove a line of code that makes the emulator spaz out when mousewheeling up very fast, I don't think removing this breaks anything, I suspect it was only there from some defensive programming and overthinking --- BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs index 6e83a5bc6b..3f1c589b3a 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs @@ -534,8 +534,7 @@ namespace BizHawk.Client.EmuHawk LoadState(closestState); } - if (GlobalWin.MainForm.EmulatorPaused) - GlobalWin.MainForm.PauseOnFrame = frame; + GlobalWin.MainForm.PauseOnFrame = frame; GlobalWin.MainForm.UnpauseEmulator(); }