parent
3e365a2928
commit
a0ad9aab36
File diff suppressed because it is too large
Load Diff
|
@ -7,7 +7,6 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
|
|||
private struct HMoveData
|
||||
{
|
||||
public bool HMoveEnabled;
|
||||
public bool HMoveJustStarted;
|
||||
public bool LateHBlankReset;
|
||||
public bool DecCntEnabled;
|
||||
|
||||
|
@ -20,7 +19,13 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
|
|||
public byte HMoveDelayCnt;
|
||||
public byte HMoveCnt;
|
||||
|
||||
public byte Player0Cnt;
|
||||
public int test_count_p0;
|
||||
public int test_count_p1;
|
||||
public int test_count_m0;
|
||||
public int test_count_m1;
|
||||
public int test_count_b;
|
||||
|
||||
public byte Player0Cnt;
|
||||
public byte Player1Cnt;
|
||||
public byte Missile0Cnt;
|
||||
public byte Missile1Cnt;
|
||||
|
@ -30,7 +35,6 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
|
|||
{
|
||||
ser.BeginSection("HMove");
|
||||
ser.Sync("hmoveEnabled", ref HMoveEnabled);
|
||||
ser.Sync("hmoveJustStarted", ref HMoveJustStarted);
|
||||
ser.Sync("lateHBlankReset", ref LateHBlankReset);
|
||||
ser.Sync("decCntEnabled", ref DecCntEnabled);
|
||||
ser.Sync("player0Latch", ref Player0Latch);
|
||||
|
@ -44,8 +48,13 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
|
|||
ser.Sync("player1Cnt", ref Player1Cnt);
|
||||
ser.Sync("missile0Cnt", ref Missile0Cnt);
|
||||
ser.Sync("missile1Cnt", ref Missile1Cnt);
|
||||
ser.Sync("ballCnt", ref BallCnt);
|
||||
ser.EndSection();
|
||||
ser.Sync("Test_count_p0", ref test_count_p0);
|
||||
ser.Sync("Test_count_p1", ref test_count_p1);
|
||||
ser.Sync("Test_count_m0", ref test_count_m0);
|
||||
ser.Sync("Test_count_m1", ref test_count_m1);
|
||||
ser.Sync("Test_count_b", ref test_count_b);
|
||||
ser.Sync("ballCnt", ref BallCnt);
|
||||
ser.EndSection();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue