diff --git a/BizHawk.Emulation/Consoles/Coleco/ColecoVision.cs b/BizHawk.Emulation/Consoles/Coleco/ColecoVision.cs index a017f235d3..409419ec8c 100644 --- a/BizHawk.Emulation/Consoles/Coleco/ColecoVision.cs +++ b/BizHawk.Emulation/Consoles/Coleco/ColecoVision.cs @@ -47,9 +47,14 @@ namespace BizHawk.Emulation.Consoles.Coleco public void FrameAdvance(bool render, bool renderSound) { + Frame++; + IsLagFrame = true; PSG.BeginFrame(Cpu.TotalExecutedCycles); VDP.ExecuteFrame(); PSG.EndFrame(Cpu.TotalExecutedCycles); + + if (IsLagFrame) + LagCount++; } void LoadRom(byte[] rom)