diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/C64.Motherboard.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/C64.Motherboard.cs index dd0fb50bce..9885dd55a3 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/C64.Motherboard.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/C64.Motherboard.cs @@ -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(); diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Chip23128.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Chip23128.cs index 92f85c7544..a8e6f64ce4 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Chip23128.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Chip23128.cs @@ -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); - } } }