Oops, fix type in IVideoProvider refactor that broke the C64 core
This commit is contained in:
parent
cdb0802230
commit
a996453fc0
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue