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)
{
if (Settings.Columns.Exists(static c => string.IsNullOrWhiteSpace(c.Text))) Settings = new(); //HACK for previous config settings
CheatEditor.MemoryDomains = Core;
LoadConfigSettings();
CheatsMenu.Items.Add(CheatListView.ToColumnsMenu(ColumnToggleCallback));

View File

@ -160,8 +160,6 @@ namespace BizHawk.Client.EmuHawk
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)
{
LoadSessionFromRecent(Config.RecentLuaSession.MostRecent);

View File

@ -139,8 +139,6 @@ namespace BizHawk.Client.EmuHawk
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));
_settings = new SearchEngineSettings(MemoryDomains, Settings.UseUndoHistory);

View File

@ -1089,7 +1089,6 @@ namespace BizHawk.Client.EmuHawk
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);
LoadConfigSettings();
RamWatchMenu.Items.Add(WatchListView.ToColumnsMenu(ColumnToggleCallback));