From c1c80687c630b4f41d23518910568ed290a02e48 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Tue, 16 May 2017 19:58:06 -0400 Subject: [PATCH] Update Sid.cs --- BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Sid.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Sid.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Sid.cs index fc5726f6e7..e561244749 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Sid.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Sid.cs @@ -22,7 +22,7 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.MOS */ // ------------------------------------ - + public int _databus; private int _cachedCycles; private bool _disableVoice3; private int _envelopeOutput0; @@ -178,6 +178,7 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.MOS public void SyncState(Serializer ser) { + ser.Sync("_databus", ref _databus); ser.Sync("_cachedCycles", ref _cachedCycles); ser.Sync("_disableVoice3", ref _disableVoice3); ser.Sync("_envelopeOutput0", ref _envelopeOutput0);