LagFrame syncstate
This commit is contained in:
parent
198008a573
commit
34663445f8
|
@ -208,7 +208,13 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
|
|||
/// <summary>
|
||||
/// Signs whether input read has been requested
|
||||
/// </summary>
|
||||
protected bool InputRead { get; set; }
|
||||
private bool inputRead;
|
||||
public bool InputRead
|
||||
{
|
||||
get { return inputRead; }
|
||||
set { inputRead = value; }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -211,6 +211,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
|
|||
ser.Sync("OverFlow", ref OverFlow);
|
||||
ser.Sync("FrameCount", ref FrameCount);
|
||||
ser.Sync("_frameCycles", ref _frameCycles);
|
||||
ser.Sync("inputRead", ref inputRead);
|
||||
ser.Sync("LastFrameStartCPUTick", ref LastFrameStartCPUTick);
|
||||
ser.Sync("LastULAOutByte", ref LastULAOutByte);
|
||||
ser.Sync("ROM0", ref ROM0, false);
|
||||
|
|
Loading…
Reference in New Issue