(svn r20164) -Fix [FS#3870]: inconsistencies w.r.t. to km/h vs km-ish/h as "base" unit for aircraft speeds

This commit is contained in:
rubidium
2010-07-16 17:45:34 +00:00
parent 615e7ce38b
commit e809c05099
7 changed files with 13 additions and 13 deletions

View File

@@ -293,7 +293,7 @@ uint Engine::GetDisplayMaxSpeed() const
case VEH_AIRCRAFT: {
uint max_speed = GetEngineProperty(this->index, PROP_AIRCRAFT_SPEED, 0);
if (max_speed != 0) {
return (max_speed * 129) / 10;
return (max_speed * 128) / 10;
}
return this->u.air.max_speed;
}