NESHawk: add missing mapper variable to state. Only for some pirate games so won't fix any reported issues, just something I noticed.

This commit is contained in:
alyosha-tas 2021-05-17 20:45:36 -04:00
parent 94a851ef9e
commit bf9c6d784d
1 changed files with 1 additions and 0 deletions

View File

@ -149,6 +149,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
ser.Sync(nameof(irq_reload_flag), ref irq_reload_flag);
ser.Sync(nameof(wram_enable), ref wram_enable);
ser.Sync(nameof(wram_write_protect), ref wram_write_protect);
ser.Sync(nameof(cmd), ref cmd);
Sync();
}