Atari 2600 - show the Needs Reboot icon when changing sync settings

This commit is contained in:
adelikat 2016-11-11 15:33:29 -06:00
parent 333e17a054
commit e72ce6d9cb
1 changed files with 7 additions and 1 deletions

View File

@ -37,8 +37,9 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
public bool PutSyncSettings(A2600SyncSettings o)
{
bool ret = A2600SyncSettings.NeedsReboot(SyncSettings, o);
SyncSettings = o;
return false;
return ret;
}
internal A2600Settings Settings { get; private set; }
@ -180,6 +181,11 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
{
SettingsUtil.SetDefaultValues(this);
}
public static bool NeedsReboot(A2600SyncSettings x, A2600SyncSettings y)
{
return !DeepEquality.DeepEquals(x, y);
}
}
}
}