Fix RESMP for 8 pixel players. Fixes frostbite ice pans.

This commit is contained in:
Christian Speckner 2016-12-15 01:01:03 +01:00
parent 65008135b8
commit a982a334a8
1 changed files with 1 additions and 1 deletions

View File

@ -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;