From 5897721637a7b54c38f5f6a637e4c3382c965cab Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 13 May 2017 07:56:32 -0500 Subject: [PATCH] C64 - refactor Chip2114 to not use SyncObject --- .../Computers/Commodore64/C64.Motherboard.cs | 10 ++++++++-- .../Computers/Commodore64/MOS/Chip2114.cs | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/C64.Motherboard.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/C64.Motherboard.cs index 9553bec6c2..8707cab227 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/C64.Motherboard.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/C64.Motherboard.cs @@ -286,8 +286,14 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64 Cia0.SyncState(ser); ser.EndSection(); - ser.BeginSection("Cia1"); SaveState.SyncObject(ser, Cia1); ser.EndSection(); - ser.BeginSection("ColorRam"); SaveState.SyncObject(ser, ColorRam); ser.EndSection(); + ser.BeginSection("Cia1"); + Cia1.SyncState(ser); + ser.EndSection(); + + ser.BeginSection("ColorRam"); + ColorRam.SyncState(ser); + ser.EndSection(); + ser.BeginSection("Cpu"); SaveState.SyncObject(ser, Cpu); ser.EndSection(); ser.BeginSection("KernalRom"); SaveState.SyncObject(ser, KernalRom); ser.EndSection(); ser.BeginSection("Pla"); SaveState.SyncObject(ser, Pla); ser.EndSection(); diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Chip2114.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Chip2114.cs index 6ae929324a..b4b9d6bcda 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Chip2114.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Chip2114.cs @@ -43,7 +43,7 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.MOS public void SyncState(Serializer ser) { - SaveState.SyncObject(ser, this); + ser.Sync("_ram", ref _ram, useNull: false); } public void Write(int addr, int val)