diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/roadveh.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/roadveh.h b/src/roadveh.h index fc0eb8b94..6af7425b4 100644 --- a/src/roadveh.h +++ b/src/roadveh.h @@ -262,7 +262,8 @@ protected: // These functions should not be called outside acceleration code. */ FORCEINLINE uint16 GetInitialMaxSpeed() const { - return this->max_speed; + /* Road vehicles use a *2 conversion factor. */ + return this->max_speed / 2; } /** |