diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.VideoProvider.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.VideoProvider.cs index 9f3b00f9c8..ea24e8bf69 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.VideoProvider.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.VideoProvider.cs @@ -72,9 +72,9 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.MOS public int VirtualHeight { get; private set; } [SaveState.DoNotSave] - public int VsyncNumerator => CyclesPerFrame; + public int VsyncNumerator => CyclesPerSecond; [SaveState.DoNotSave] - public int VsyncDenominator => CyclesPerSecond; + public int VsyncDenominator => CyclesPerFrame; } }