mirror of https://github.com/stella-emu/stella.git
No jitter simulation during the initial garbage frames.
This commit is contained in:
parent
2af885b417
commit
20c21177ea
|
@ -143,7 +143,10 @@ void FrameManager::setState(FrameManager::State state)
|
||||||
switch (myState) {
|
switch (myState) {
|
||||||
case State::waitForFrameStart:
|
case State::waitForFrameStart:
|
||||||
notifyFrameComplete();
|
notifyFrameComplete();
|
||||||
|
|
||||||
|
if (myTotalFrames > Metrics::initialGarbageFrames)
|
||||||
myJitterEmulation.frameComplete(myCurrentFrameFinalLines);
|
myJitterEmulation.frameComplete(myCurrentFrameFinalLines);
|
||||||
|
|
||||||
notifyFrameStart();
|
notifyFrameStart();
|
||||||
|
|
||||||
myVsyncLines = 0;
|
myVsyncLines = 0;
|
||||||
|
|
Loading…
Reference in New Issue