From e78b39208b0942da443fda17c137f672db6feb66 Mon Sep 17 00:00:00 2001 From: Suuper Date: Thu, 30 Jul 2015 13:07:48 -0500 Subject: [PATCH] InputRoll: Bugfix with my new code. --- BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs index 300175eb22..42fc10fd36 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs @@ -1362,7 +1362,7 @@ namespace BizHawk.Client.EmuHawk private void DoSelectionBG(PaintEventArgs e) { // SuuperW: This allows user to see other colors in selected frames. - Color rowColor = new Color(); + Color rowColor = Color.White; int lastRow = -1; foreach (Cell cell in SelectedItems) { @@ -1376,7 +1376,7 @@ namespace BizHawk.Client.EmuHawk }; relativeCell.RowIndex -= CountLagFramesAbsolute(relativeCell.RowIndex.Value); - if (lastRow != cell.RowIndex.Value) + if (QueryRowBkColor != null && lastRow != cell.RowIndex.Value) { QueryRowBkColor(cell.RowIndex.Value, ref rowColor); lastRow = cell.RowIndex.Value;