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)
|
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));
|
||||||
|
|
|
@ -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);
|
||||||
|
|
|
@ -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);
|
||||||
|
|
|
@ -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));
|
||||||
|
|
Loading…
Reference in New Issue