Atari 2600 - show the Needs Reboot icon when changing sync settings
This commit is contained in:
parent
333e17a054
commit
e72ce6d9cb
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue