From a2762d708e099c38dc0a63ac0f6399a5d56bd8f4 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 28 Sep 2014 17:28:57 +0000 Subject: [PATCH] Input Roll - oops, update current cell regardless of if the caller has subscribed to the PointedCellChanged event --- BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs index 96ce7b275e..f939495f28 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs @@ -1228,10 +1228,11 @@ namespace BizHawk.Client.EmuHawk /// private void CellChanged(Cell newCell) { + LastCell = CurrentCell; + CurrentCell = newCell; + if (PointedCellChanged != null && newCell != CurrentCell) { - LastCell = CurrentCell; - CurrentCell = newCell; PointedCellChanged(this, new CellEventArgs(LastCell, CurrentCell)); } }