Ram Watch - hack for backwards config compatibility
This commit is contained in:
parent
5826d584cc
commit
83032a363b
|
@ -1099,6 +1099,12 @@ namespace BizHawk.Client.EmuHawk
|
||||||
|
|
||||||
private void NewRamWatch_Load(object sender, EventArgs e)
|
private void NewRamWatch_Load(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
|
// Hack for previous config settings
|
||||||
|
if (Settings.Columns.Any(c => string.IsNullOrWhiteSpace(c.Text)))
|
||||||
|
{
|
||||||
|
Settings = new RamWatchSettings();
|
||||||
|
}
|
||||||
|
|
||||||
TopMost = Settings.TopMost;
|
TopMost = Settings.TopMost;
|
||||||
_watches = new WatchList(MemoryDomains, Emu.SystemId);
|
_watches = new WatchList(MemoryDomains, Emu.SystemId);
|
||||||
LoadConfigSettings();
|
LoadConfigSettings();
|
||||||
|
|
Loading…
Reference in New Issue