Update Sid.cs

This commit is contained in:
alyosha-tas 2017-05-16 19:58:06 -04:00 committed by GitHub
parent 001091f9a1
commit c1c80687c6
1 changed files with 2 additions and 1 deletions

View File

@ -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);