Use speed as an int instead of float to calculate latency

--HG--
branch : fix_speed
This commit is contained in:
Guillaume Dupuy 2016-10-14 21:19:27 +02:00
parent 0e467cba86
commit 9c5ecea867

View file

@ -131,7 +131,7 @@ CCombatWeapon::CCombatWeapon(CGameItemPtr itemPtr)
if (itemPtr->hitRate() != 0)
{
//getGameTimeStep() is actually a double and hitRate() a float, so the precision difference will make a cast of the result fail (for example, with hitRate() == 10.0f, the cast will give a value of 9 and not 10
LatencyInTicks = uint16 ( (10.0f / itemPtr->hitRate() ) / float(CTickEventHandler::getGameTimeStep()) );
LatencyInTicks = uint16 ( (10.0f / uint16(itemPtr->hitRate()) ) / float(CTickEventHandler::getGameTimeStep()) );
}
Quality = (uint16)itemPtr->recommended();