mirror of https://github.com/stella-emu/stella.git
Fix RESMP for 8 pixel players. Fixes frostbite ice pans.
This commit is contained in:
parent
65008135b8
commit
a982a334a8
|
@ -213,7 +213,7 @@ uInt8 Player::getRespClock() const
|
|||
switch (myWidth)
|
||||
{
|
||||
case 8:
|
||||
return (myCounter + 160 - 3) % 160;
|
||||
return (myCounter + 160 - 5) % 160;
|
||||
|
||||
case 16:
|
||||
return (myCounter + 160 - 9) % 160;
|
||||
|
|
Loading…
Reference in New Issue