From 07d1c41712b4915d4897177171b3f4432ec8df2a Mon Sep 17 00:00:00 2001 From: James Groom Date: Wed, 6 Mar 2024 17:39:38 +1000 Subject: [PATCH] Fix typo fixes 8c3f857ab --- src/BizHawk.Client.EmuHawk/tools/Cheats/CheatEdit.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Client.EmuHawk/tools/Cheats/CheatEdit.cs b/src/BizHawk.Client.EmuHawk/tools/Cheats/CheatEdit.cs index c9dedfc5d7..0dd24c9a82 100644 --- a/src/BizHawk.Client.EmuHawk/tools/Cheats/CheatEdit.cs +++ b/src/BizHawk.Client.EmuHawk/tools/Cheats/CheatEdit.cs @@ -254,7 +254,7 @@ namespace BizHawk.Client.EmuHawk private void DisplayTypeDropDown_SelectedIndexChanged(object sender, EventArgs e) { - var newDisp Watch.StringToDisplayType(DisplayTypeDropDown.SelectedItem.ToString()); //TODO use Tag or Index + var newDisp = Watch.StringToDisplayType(DisplayTypeDropDown.SelectedItem.ToString()); //TODO use Tag or Index ValueBox.Type = CompareBox.Type = newDisp; ValueHexIndLabel.Text = CompareHexIndLabel.Text = newDisp is WatchDisplayType.Hex ? HexInd : string.Empty; //TODO "0b" for binary // NOT writing to `_cheat`, the "Override" button handles that