changeset 14627:d1565f990581 draft

(svn r19204) -Fix (r1919x): airport tiles without animation had an incomplete contructor
author yexo <yexo@openttd.org>
date Mon, 22 Feb 2010 16:08:31 +0000
parents 540a102b8b25
children 24e8054e9cda
files src/table/airporttiles.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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. */