settings cleanup

This commit is contained in:
goyuken 2014-08-03 22:09:08 +00:00
parent 768c2762a5
commit 78d1e95791
1 changed files with 1 additions and 5 deletions

View File

@ -1172,11 +1172,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
public static bool NeedsReboot(NESControlSettings x, NESControlSettings y)
{
return
x.Famicom != y.Famicom ||
x.FamicomExpPort != y.FamicomExpPort ||
x.NesLeftPort != y.NesLeftPort ||
x.NesRightPort != y.NesRightPort;
return !DeepEquality.DeepEquals(x, y);
}
public NESControlSettings Clone()