Remove temporary no-crash-plz shims
This commit is contained in:
parent
a3aa67681f
commit
bbe7040554
|
@ -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));
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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));
|
||||
|
|
Loading…
Reference in New Issue