added missing prefixes

This commit is contained in:
thrust26 2019-01-05 23:01:21 +01:00
parent 11c90f296e
commit b5de674c58
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -