Oops, fix type in IVideoProvider refactor that broke the C64 core

This commit is contained in:
adelikat 2017-05-09 09:58:23 -05:00
parent cdb0802230
commit a996453fc0
1 changed files with 2 additions and 2 deletions

View File

@ -72,9 +72,9 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.MOS
public int VirtualHeight { get; private set; } public int VirtualHeight { get; private set; }
[SaveState.DoNotSave] [SaveState.DoNotSave]
public int VsyncNumerator => CyclesPerFrame; public int VsyncNumerator => CyclesPerSecond;
[SaveState.DoNotSave] [SaveState.DoNotSave]
public int VsyncDenominator => CyclesPerSecond; public int VsyncDenominator => CyclesPerFrame;
} }
} }