mirror of https://github.com/stella-emu/stella.git
corrected RESMPx for double sized players (fixes #889)
This commit is contained in:
parent
5f2b621ebb
commit
df90ece66d
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue