GBHawk: sync settings fix
This commit is contained in:
parent
c42bf37e86
commit
4324e1b309
|
@ -137,6 +137,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
|
|||
|
||||
[JsonIgnore]
|
||||
private int _RTCInitialTime;
|
||||
[JsonIgnore]
|
||||
private int _RTCOffset;
|
||||
[JsonIgnore]
|
||||
public ushort _DivInitialTime = 8;
|
||||
|
|
|
@ -145,11 +145,15 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawkLink
|
|||
|
||||
[JsonIgnore]
|
||||
private int _RTCInitialTime_L;
|
||||
[JsonIgnore]
|
||||
private int _RTCInitialTime_R;
|
||||
[JsonIgnore]
|
||||
private int _RTCOffset_L;
|
||||
[JsonIgnore]
|
||||
private int _RTCOffset_R;
|
||||
[JsonIgnore]
|
||||
public ushort _DivInitialTime_L = 8;
|
||||
[JsonIgnore]
|
||||
public ushort _DivInitialTime_R = 8;
|
||||
|
||||
public GBLinkSyncSettings Clone()
|
||||
|
|
|
@ -183,14 +183,21 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawkLink3x
|
|||
|
||||
[JsonIgnore]
|
||||
private int _RTCInitialTime_L;
|
||||
[JsonIgnore]
|
||||
private int _RTCInitialTime_C;
|
||||
[JsonIgnore]
|
||||
private int _RTCInitialTime_R;
|
||||
[JsonIgnore]
|
||||
private int _RTCOffset_L;
|
||||
[JsonIgnore]
|
||||
private int _RTCOffset_C;
|
||||
[JsonIgnore]
|
||||
private int _RTCOffset_R;
|
||||
[JsonIgnore]
|
||||
public ushort _DivInitialTime_L = 8;
|
||||
[JsonIgnore]
|
||||
public ushort _DivInitialTime_C = 8;
|
||||
[JsonIgnore]
|
||||
public ushort _DivInitialTime_R = 8;
|
||||
|
||||
public GBLink3xSyncSettings Clone()
|
||||
|
|
|
@ -221,17 +221,27 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawkLink4x
|
|||
|
||||
[JsonIgnore]
|
||||
private int _RTCInitialTime_A;
|
||||
[JsonIgnore]
|
||||
private int _RTCInitialTime_B;
|
||||
[JsonIgnore]
|
||||
private int _RTCInitialTime_C;
|
||||
[JsonIgnore]
|
||||
private int _RTCInitialTime_D;
|
||||
[JsonIgnore]
|
||||
private int _RTCOffset_A;
|
||||
[JsonIgnore]
|
||||
private int _RTCOffset_B;
|
||||
[JsonIgnore]
|
||||
private int _RTCOffset_C;
|
||||
[JsonIgnore]
|
||||
private int _RTCOffset_D;
|
||||
[JsonIgnore]
|
||||
public ushort _DivInitialTime_A = 8;
|
||||
[JsonIgnore]
|
||||
public ushort _DivInitialTime_B = 8;
|
||||
[JsonIgnore]
|
||||
public ushort _DivInitialTime_C = 8;
|
||||
[JsonIgnore]
|
||||
public ushort _DivInitialTime_D = 8;
|
||||
|
||||
public GBLink4xSyncSettings Clone()
|
||||
|
|
Loading…
Reference in New Issue