From a996453fc08aabf166c8b4e171815cf46b3ba189 Mon Sep 17 00:00:00 2001 From: adelikat Date: Tue, 9 May 2017 09:58:23 -0500 Subject: [PATCH] Oops, fix type in IVideoProvider refactor that broke the C64 core --- .../Computers/Commodore64/MOS/Vic.VideoProvider.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } }