summaryrefslogtreecommitdiff
path: root/src/table/airporttiles.h
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2010-02-22 16:08:31 +0000
committeryexo <yexo@openttd.org>2010-02-22 16:08:31 +0000
commit5ebc0a16c828e8504858239154a6a70855837556 (patch)
tree509ee07abaf774d3a36b4f792f838714c4a12db3 /src/table/airporttiles.h
parent077fa11b3edf46eb124dbec67ba83fae3b6fa8ad (diff)
downloadopenttd-5ebc0a16c828e8504858239154a6a70855837556.tar.xz
(svn r19204) -Fix (r1919x): airport tiles without animation had an incomplete contructor
Diffstat (limited to 'src/table/airporttiles.h')
-rw-r--r--src/table/airporttiles.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/table/airporttiles.h b/src/table/airporttiles.h
index 3d1894743..00139478a 100644
--- a/src/table/airporttiles.h
+++ b/src/table/airporttiles.h
@@ -15,7 +15,7 @@
/** Writes all airport tile properties in the AirportTile struct */
#define AT(num_frames, anim_speed) {(1 << 8) | num_frames, anim_speed, STR_NULL, 0, 0, 0, true, {INVALID_AIRPORTTILE, 0, NULL, NULL, INVALID_AIRPORTTILE}}
/** Writes an airport tile without animation in the AirportTile struct */
-#define AT_NOANIM {0xFFFF, 2}
+#define AT_NOANIM {0xFFFF, 2, STR_NULL, 0, 0, 0, true, {INVALID_AIRPORTTILE, 0, NULL, NULL, INVALID_AIRPORTTILE}}
/** All default airport tiles.
* @see AirportTiles for a list of names. */