C64 - add frame and lag information to savestates

This commit is contained in:
adelikat 2014-12-25 13:32:19 +00:00
parent a226f61f7c
commit e3483758c4
1 changed files with 3 additions and 0 deletions

View File

@ -41,6 +41,9 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64
private void SyncState(Serializer ser)
{
ser.BeginSection("core");
ser.Sync("frame", ref _frame);
ser.Sync("islag", ref _islag);
ser.Sync("lagcount", ref _lagcount);
board.SyncState(ser);
ser.EndSection();
}