NES VRC1: Don't change savestate if not in VS mode

This commit is contained in:
nattthebear 2016-10-30 12:28:21 -04:00
parent b763b29297
commit 9632ceb7fc
1 changed files with 2 additions and 1 deletions

View File

@ -32,7 +32,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
base.SyncState(ser);
ser.Sync("prg_banks_8k", ref prg_banks_8k);
ser.Sync("chr_banks_4k", ref chr_banks_4k);
ser.Sync("VS_CIRAM", ref CIRAM_VS, false);
if (NES.IsVS)
ser.Sync("VS_CIRAM", ref CIRAM_VS, false);
for (int i = 0; i < 2; i++) ser.Sync("chr_regs_4k_" + i, ref chr_regs_4k[i]);
if (ser.IsReader)