mirror of https://github.com/stella-emu/stella.git
attempt to remove warnings
This commit is contained in:
parent
838b277c0a
commit
524548a08a
|
@ -185,11 +185,11 @@ string RewindManager::getMessage(RewindState& state)
|
|||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
string RewindManager::getUnitString(Int64 cycles)
|
||||
{
|
||||
const uInt64 scanlines = myOSystem.console().tia().scanlinesLastFrame();
|
||||
const Int64 scanlines = myOSystem.console().tia().scanlinesLastFrame();
|
||||
const bool isNTSC = scanlines <= 285; // TODO: replace magic number
|
||||
const uInt64 NTSC_FREQ = 1193182; // ~76*262*60
|
||||
const uInt64 PAL_FREQ = 1182298; // ~76*312*50
|
||||
const uInt64 freq = isNTSC ? NTSC_FREQ : PAL_FREQ; // = cycles/second
|
||||
const Int64 NTSC_FREQ = 1193182; // ~76*262*60
|
||||
const Int64 PAL_FREQ = 1182298; // ~76*312*50
|
||||
const Int64 freq = isNTSC ? NTSC_FREQ : PAL_FREQ; // = cycles/second
|
||||
|
||||
string unit;
|
||||
Int64 diffUnit;
|
||||
|
|
Loading…
Reference in New Issue