gambatte: add the new drift trackers (that ensure constant framerate) to savestate

This commit is contained in:
goyuken 2014-04-30 17:36:35 +00:00
parent 3880f9059c
commit ccd5782909
1 changed files with 4 additions and 0 deletions

View File

@ -484,6 +484,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy
writer.Write(IsLagFrame);
writer.Write(LagCount);
writer.Write(Frame);
writer.Write(frameOverflow);
writer.Write(_cycleCount);
}
public void LoadStateBinary(System.IO.BinaryReader reader)
@ -497,6 +499,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy
IsLagFrame = reader.ReadBoolean();
LagCount = reader.ReadInt32();
Frame = reader.ReadInt32();
frameOverflow = reader.ReadUInt32();
_cycleCount = reader.ReadUInt64();
}
public byte[] SaveStateBinary()