Text savestate fixes.

This commit is contained in:
J.D. Purcell 2016-12-14 18:35:03 -05:00
parent 036358fbf9
commit 206ea9887b
5 changed files with 7 additions and 7 deletions

View File

@ -53,7 +53,7 @@ namespace BizHawk.Emulation.Cores.Components.CP1610
ser.Sync("Interruptible", ref Interruptible);
ser.Sync("Interrupted", ref Interrupted);
ser.Sync("Toal_executed_cycles", ref TotalExecutedCycles);
ser.Sync("Pending Cycles", ref PendingCycles);
ser.Sync("Pending_Cycles", ref PendingCycles);
ser.EndSection();

View File

@ -114,15 +114,15 @@ namespace BizHawk.Emulation.Cores.Intellivision
ser.Sync("Register", ref Register, false);
ser.Sync("Toal_executed_cycles", ref TotalExecutedCycles);
ser.Sync("Pending Cycles", ref PendingCycles);
ser.Sync("Pending_Cycles", ref PendingCycles);
ser.Sync("sample_count", ref sample_count);
ser.Sync("psg_clock", ref psg_clock);
ser.Sync("clock_A", ref clock_A);
ser.Sync("clock_B", ref clock_B);
ser.Sync("clock_C", ref clock_C);
ser.Sync("noise clock", ref noise_clock);
ser.Sync("noise clock", ref env_clock);
ser.Sync("noise_clock", ref noise_clock);
ser.Sync("env_clock", ref env_clock);
ser.Sync("A_up", ref A_up);
ser.Sync("B_up", ref B_up);
ser.Sync("C_up", ref C_up);

View File

@ -34,7 +34,7 @@ namespace BizHawk.Emulation.Cores.Intellivision
ser.Sync("Sst", ref Sst);
ser.Sync("Fgbg", ref Fgbg);
ser.Sync("Toal_executed_cycles", ref TotalExecutedCycles);
ser.Sync("Pending Cycles", ref PendingCycles);
ser.Sync("Pending_Cycles", ref PendingCycles);
ser.Sync("Registers", ref Register, false);
ser.EndSection();

View File

@ -125,7 +125,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
if (NES._isVS)
ser.Sync("CIRAM_VS", ref CIRAM_VS, false);
ser.Sync("tko security", ref tko_security);
ser.Sync("tko_security", ref tko_security);
mapper.SyncState(ser);
}

View File

@ -399,7 +399,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
base.SyncState(ser);
mmc1.SyncState(ser);
ser.Sync("ppuclock", ref ppuclock);
ser.Sync("chr wram enable", ref chr_wram_enable);
ser.Sync("chr_wram_enable", ref chr_wram_enable);
if (NES._isVS)
ser.Sync("VS_CIRAM", ref CIRAM_VS, false);
}