mirror of https://github.com/stella-emu/stella.git
Fix player decode logic reset during hblank.
This commit is contained in:
parent
6a2259ef2f
commit
eb1fe88176
|
@ -104,7 +104,7 @@ void Player::resp(uInt8 counter)
|
||||||
// This tries to account for the effects of RESP during draw counter decode as
|
// This tries to account for the effects of RESP during draw counter decode as
|
||||||
// described in Andrew Towers' notes. Still room for tuning.'
|
// described in Andrew Towers' notes. Still room for tuning.'
|
||||||
if (myIsRendering && (myRenderCounter - renderCounterOffset) < 4)
|
if (myIsRendering && (myRenderCounter - renderCounterOffset) < 4)
|
||||||
myRenderCounter = renderCounterOffset;
|
myRenderCounter = renderCounterOffset + (counter - 157);
|
||||||
}
|
}
|
||||||
|
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
Loading…
Reference in New Issue