Remove temporary no-crash-plz shims

This commit is contained in:
James Groom 2024-03-20 19:33:46 +00:00 committed by GitHub
parent a3aa67681f
commit bbe7040554
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 0 additions and 6 deletions

View File

@ -162,7 +162,6 @@ namespace BizHawk.Client.EmuHawk
private void Cheats_Load(object sender, EventArgs e) private void Cheats_Load(object sender, EventArgs e)
{ {
if (Settings.Columns.Exists(static c => string.IsNullOrWhiteSpace(c.Text))) Settings = new(); //HACK for previous config settings
CheatEditor.MemoryDomains = Core; CheatEditor.MemoryDomains = Core;
LoadConfigSettings(); LoadConfigSettings();
CheatsMenu.Items.Add(CheatListView.ToColumnsMenu(ColumnToggleCallback)); CheatsMenu.Items.Add(CheatListView.ToColumnsMenu(ColumnToggleCallback));

View File

@ -160,8 +160,6 @@ namespace BizHawk.Client.EmuHawk
private void LuaConsole_Load(object sender, EventArgs e) private void LuaConsole_Load(object sender, EventArgs e)
{ {
if (Settings.Columns.Exists(static c => c.Text is null)) Settings = new(); //HACK for previous config settings
if (Config.RecentLuaSession.AutoLoad && !Config.RecentLuaSession.Empty) if (Config.RecentLuaSession.AutoLoad && !Config.RecentLuaSession.Empty)
{ {
LoadSessionFromRecent(Config.RecentLuaSession.MostRecent); LoadSessionFromRecent(Config.RecentLuaSession.MostRecent);

View File

@ -139,8 +139,6 @@ namespace BizHawk.Client.EmuHawk
private void RamSearch_Load(object sender, EventArgs e) private void RamSearch_Load(object sender, EventArgs e)
{ {
if (Settings.Columns.Exists(static c => string.IsNullOrWhiteSpace(c.Text))) Settings = new(); //HACK for previous config settings
RamSearchMenu.Items.Add(WatchListView.ToColumnsMenu(ColumnToggleCallback)); RamSearchMenu.Items.Add(WatchListView.ToColumnsMenu(ColumnToggleCallback));
_settings = new SearchEngineSettings(MemoryDomains, Settings.UseUndoHistory); _settings = new SearchEngineSettings(MemoryDomains, Settings.UseUndoHistory);

View File

@ -1089,7 +1089,6 @@ namespace BizHawk.Client.EmuHawk
private void RamWatch_Load(object sender, EventArgs e) private void RamWatch_Load(object sender, EventArgs e)
{ {
if (Settings.Columns.Exists(static c => string.IsNullOrWhiteSpace(c.Text))) Settings = new(); //HACK for previous config settings
_watches = new WatchList(MemoryDomains, Emu.SystemId); _watches = new WatchList(MemoryDomains, Emu.SystemId);
LoadConfigSettings(); LoadConfigSettings();
RamWatchMenu.Items.Add(WatchListView.ToColumnsMenu(ColumnToggleCallback)); RamWatchMenu.Items.Add(WatchListView.ToColumnsMenu(ColumnToggleCallback));