diff options
author | rubidium <rubidium@openttd.org> | 2014-09-21 11:17:47 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2014-09-21 11:17:47 +0000 |
commit | 5116c39865bf3c6117314acfc3644993cef7fb7d (patch) | |
tree | 916ba1b3ee1f34dbe3856c70bc3a2225e422c677 | |
parent | 04e2324b8f9083627354131cbe45a2164283b952 (diff) | |
download | openttd-5116c39865bf3c6117314acfc3644993cef7fb7d.tar.xz |
(svn r26874) -Fix (r26872): hopefully fix MSVC compile error
-rw-r--r-- | src/aircraft_cmd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/aircraft_cmd.cpp b/src/aircraft_cmd.cpp index 2d3d8cf3e..76e289c0a 100644 --- a/src/aircraft_cmd.cpp +++ b/src/aircraft_cmd.cpp @@ -764,7 +764,7 @@ int GetAircraftFlightLevel(T *v, bool takeoff) return z; } -template int GetAircraftFlightLevel(DisasterVehicle *v, bool takeoff = false); +template int GetAircraftFlightLevel(DisasterVehicle *v, bool takeoff); /** * Find the entry point to an airport depending on direction which |