corrected RESMPx for double sized players (fixes #889)

This commit is contained in:
Thomas Jentzsch 2022-04-21 18:57:33 +02:00
parent 5f2b621ebb
commit df90ece66d
1 changed files with 1 additions and 1 deletions

View File

@ -288,7 +288,7 @@ uInt8 Player::getRespClock() const
return (myCounter + TIAConstants::H_PIXEL - 5) % TIAConstants::H_PIXEL; return (myCounter + TIAConstants::H_PIXEL - 5) % TIAConstants::H_PIXEL;
case 2: case 2:
return (myCounter + TIAConstants::H_PIXEL - 9) % TIAConstants::H_PIXEL; return (myCounter + TIAConstants::H_PIXEL - 8) % TIAConstants::H_PIXEL;
case 4: case 4:
return (myCounter + TIAConstants::H_PIXEL - 12) % TIAConstants::H_PIXEL; return (myCounter + TIAConstants::H_PIXEL - 12) % TIAConstants::H_PIXEL;