mirror of https://github.com/stella-emu/stella.git
added missing prefixes
This commit is contained in:
parent
11c90f296e
commit
b5de674c58
|
@ -173,8 +173,8 @@ void Player::resp(uInt8 counter)
|
|||
|
||||
// This tries to account for the effects of RESP during draw counter decode as
|
||||
// described in Andrew Towers' notes. Still room for tuning.'
|
||||
if (myIsRendering && (myRenderCounter - renderCounterOffset) < 4)
|
||||
myRenderCounter = renderCounterOffset + (counter - 157);
|
||||
if (myIsRendering && (myRenderCounter - Count::renderCounterOffset) < 4)
|
||||
myRenderCounter = Count::renderCounterOffset + (counter - 157);
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
|
Loading…
Reference in New Issue