Fix RESMP for 16 and 32 pixel players.

This commit is contained in:
Christian Speckner 2016-12-08 21:17:56 +01:00
parent afae00a654
commit 38d8d893aa
1 changed files with 2 additions and 2 deletions

View File

@ -218,10 +218,10 @@ uInt8 Player::getRespClock() const
return myCounter - 3;
case 16:
return myCounter - 6;
return myCounter - 9;
case 32:
return myCounter - 10;
return myCounter - 13;
default:
throw runtime_error("invalid width");