C64 - Chip23128 has nothing to save so don't try to save things

This commit is contained in:
adelikat 2017-05-13 08:27:13 -05:00
parent 4d37e8b4e4
commit 9effe326ad
2 changed files with 0 additions and 7 deletions

View File

@ -296,7 +296,6 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64
Cpu.SyncState(ser);
ser.EndSection();
ser.BeginSection("KernalRom"); SaveState.SyncObject(ser, KernalRom); ser.EndSection();
ser.BeginSection("Pla"); SaveState.SyncObject(ser, Pla); ser.EndSection();
ser.BeginSection("Ram"); SaveState.SyncObject(ser, Ram); ser.EndSection();
ser.BeginSection("Sid"); SaveState.SyncObject(ser, Sid); ser.EndSection();

View File

@ -1,5 +1,4 @@
using System;
using BizHawk.Common;
namespace BizHawk.Emulation.Cores.Computers.Commodore64.MOS
{
@ -36,10 +35,5 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.MOS
{
return _rom[addr & 0x3FFF];
}
public void SyncState(Serializer ser)
{
SaveState.SyncObject(ser, this);
}
}
}