From 61a893d6fd341515c5d0fea254c5ea25849afa58 Mon Sep 17 00:00:00 2001 From: frosch Date: Sun, 1 Feb 2009 17:14:39 +0000 Subject: (svn r15308) -Codechange: Deduplicate km-ish/h -> mph conversions. --- src/vehicle_base.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/vehicle_base.h') diff --git a/src/vehicle_base.h b/src/vehicle_base.h index 3113658f3..cfda648ec 100644 --- a/src/vehicle_base.h +++ b/src/vehicle_base.h @@ -397,13 +397,13 @@ public: virtual SpriteID GetImage(Direction direction) const { return 0; } /** - * Gets the speed in mph that can be sent into SetDParam for string processing. + * Gets the speed in km-ish/h that can be sent into SetDParam for string processing. * @return the vehicle's speed */ virtual int GetDisplaySpeed() const { return 0; } /** - * Gets the maximum speed in mph that can be sent into SetDParam for string processing. + * Gets the maximum speed in km-ish/h that can be sent into SetDParam for string processing. * @return the vehicle's maximum speed */ virtual int GetDisplayMaxSpeed() const { return 0; } -- cgit v1.2.3-54-g00ecf