From 47273f12781dbacade7026716ea68169e6d1109f Mon Sep 17 00:00:00 2001 From: adelikat Date: Tue, 26 Nov 2019 13:03:28 -0600 Subject: [PATCH] Tastudio - fix FastUpdate being slower than Update, it seems to need the same logic but just forgot all the logic, let's ensure it doesn't forget --- .../tools/TAStudio/TAStudio.IToolForm.cs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.IToolForm.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.IToolForm.cs index f2b3ddd7a4..2057767128 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.IToolForm.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.IToolForm.cs @@ -68,14 +68,7 @@ namespace BizHawk.Client.EmuHawk public void FastUpdate() { - if (!IsHandleCreated || IsDisposed || CurrentTasMovie == null) - { - return; - } - - TasView.RowCount = CurrentTasMovie.InputLogLength + 1; - - MaybeFollowCursor(); + UpdateValues(); } public void Restart()