From 0e9e4cc034af55404791100e03f34dea5a7fc7af Mon Sep 17 00:00:00 2001 From: feos Date: Mon, 21 Nov 2016 21:19:53 +0300 Subject: [PATCH] tastudio: fix < button when seeking is paused --- .../tools/TAStudio/TAStudio.IControlMainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.IControlMainForm.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.IControlMainForm.cs index 2ecc788c54..cad308f52a 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.IControlMainForm.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.IControlMainForm.cs @@ -79,7 +79,7 @@ namespace BizHawk.Client.EmuHawk public bool Rewind() { // copypasted from TasView_MouseWheel(), just without notch logic - if (Mainform.IsSeeking) + if (Mainform.IsSeeking && !Mainform.EmulatorPaused) { Mainform.PauseOnFrame--; // that's a weird condition here, but for whatever reason it works best