mirror of https://github.com/stella-emu/stella.git
Fix division by zero.
This commit is contained in:
parent
905f5eee90
commit
4248f5b916
|
@ -1277,9 +1277,13 @@ void Console::changeAutoFireRate(int direction)
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
float Console::currentFrameRate() const
|
float Console::currentFrameRate() const
|
||||||
{
|
{
|
||||||
|
uInt32 scalinesLastFrame = myTIA->frameBufferScanlinesLastFrame();
|
||||||
|
|
||||||
return
|
return
|
||||||
(myConsoleTiming == ConsoleTiming::ntsc ? 262.F * 60.F : 312.F * 50.F) /
|
scalinesLastFrame != 0 ?
|
||||||
myTIA->frameBufferScanlinesLastFrame();
|
(myConsoleTiming == ConsoleTiming::ntsc ? 262.F * 60.F : 312.F * 50.F)
|
||||||
|
/ myTIA->frameBufferScanlinesLastFrame() :
|
||||||
|
0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
Loading…
Reference in New Issue