mirror of https://github.com/stella-emu/stella.git
Fix what looks like an inconsistency in the calculation of scanline count.
This commit is contained in:
parent
a83e7eb26d
commit
a5f1a8624f
|
@ -222,7 +222,7 @@ uInt32 FrameManager::currentLine() const
|
|||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
uInt32 FrameManager::scanlines() const
|
||||
{
|
||||
return myState == State::frame ? myLineInState : myCurrentFrameFinalLines;
|
||||
return myState == State::frame ? myCurrentFrameTotalLines : myCurrentFrameFinalLines;
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
|
Loading…
Reference in New Issue