From d76531064edd33048e92989a71c81e10b68c19b7 Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 18 Oct 2019 20:07:16 -0500 Subject: [PATCH] Ram Search - show Prev column by default --- BizHawk.Client.EmuHawk/tools/Watch/RamSearch.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/Watch/RamSearch.cs b/BizHawk.Client.EmuHawk/tools/Watch/RamSearch.cs index 5e520273f9..aa0eba2cb2 100644 --- a/BizHawk.Client.EmuHawk/tools/Watch/RamSearch.cs +++ b/BizHawk.Client.EmuHawk/tools/Watch/RamSearch.cs @@ -978,7 +978,7 @@ namespace BizHawk.Client.EmuHawk { new InputRoll.RollColumn { Text = "Address", Name = WatchList.ADDRESS, Visible = true, Width = 60, Type = InputRoll.RollColumn.InputType.Text }, new InputRoll.RollColumn { Text = "Value", Name = WatchList.VALUE, Visible = true, Width = 59, Type = InputRoll.RollColumn.InputType.Text }, - new InputRoll.RollColumn { Text = "Prev", Name = WatchList.PREV, Visible = false, Width = 59, Type = InputRoll.RollColumn.InputType.Text }, + new InputRoll.RollColumn { Text = "Prev", Name = WatchList.PREV, Visible = true, Width = 59, Type = InputRoll.RollColumn.InputType.Text }, new InputRoll.RollColumn { Text = "Changes", Name = WatchList.CHANGES, Visible = true, Width = 60, Type = InputRoll.RollColumn.InputType.Text }, new InputRoll.RollColumn { Text = "Diff", Name = WatchList.DIFF, Visible = false, Width = 59, Type = InputRoll.RollColumn.InputType.Text }, }; @@ -1416,7 +1416,7 @@ namespace BizHawk.Client.EmuHawk RamSearchMenu.Items.Remove( RamSearchMenu.Items .OfType() - .First(x => x.Name == "GeneratedColumnsSubMenu")); + .Single(x => x.Name == "GeneratedColumnsSubMenu")); RamSearchMenu.Items.Add(WatchListView.ToColumnsMenu(ColumnToggleCallback));