summaryrefslogtreecommitdiff
path: root/src/aircraft.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-06-02 19:12:28 +0000
committerrubidium <rubidium@openttd.org>2009-06-02 19:12:28 +0000
commit2fc0cb3e76ec36826056c661555b925b3ce43fe3 (patch)
tree3abde6b4e39242c5d4c8f255f5f4b8d4403b0b47 /src/aircraft.h
parent78a25e84e9d7935404f13c041e8a93c4e9b6ff47 (diff)
downloadopenttd-2fc0cb3e76ec36826056c661555b925b3ce43fe3.tar.xz
(svn r16505) -Fix [FS#2951] (r16472): since g++ 4.4 the implicit (default) constructor will zero the whole class. This caused all vehicle indices to be 0, which causes all kinds of trouble.
Diffstat (limited to 'src/aircraft.h')
-rw-r--r--src/aircraft.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/aircraft.h b/src/aircraft.h
index 1977b8249..b782aae50 100644
--- a/src/aircraft.h
+++ b/src/aircraft.h
@@ -100,6 +100,8 @@ struct Aircraft : public SpecializedVehicle<Aircraft, VEH_AIRCRAFT> {
StationID targetairport;
byte state;
+ /** We don't want GCC to zero our struct! It already is zeroed and has an index! */
+ Aircraft() : SpecializedVehicle<Aircraft, VEH_AIRCRAFT>() {}
/** We want to 'destruct' the right class. */
virtual ~Aircraft() { this->PreDestructor(); }