diff options
author | yexo <yexo@openttd.org> | 2010-02-22 14:16:19 +0000 |
---|---|---|
committer | yexo <yexo@openttd.org> | 2010-02-22 14:16:19 +0000 |
commit | 80fb5c70c8e5c41d519946fe59fba4185fe7af89 (patch) | |
tree | ca6df050a8761bbd87c4680305ca824a1916f767 /src/table | |
parent | 683ad53d21871e49bd8f6071db25e8ab1ad4485b (diff) | |
download | openttd-80fb5c70c8e5c41d519946fe59fba4185fe7af89.tar.xz |
(svn r19194) -Feature: action 0/1/2/3 support for newgrf airporttiles
Diffstat (limited to 'src/table')
-rw-r--r-- | src/table/airporttiles.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/table/airporttiles.h b/src/table/airporttiles.h index 5d7c61c18..19843f731 100644 --- a/src/table/airporttiles.h +++ b/src/table/airporttiles.h @@ -13,7 +13,7 @@ #define AIRPORTTILES_H /** Writes all airport tile properties in the AirportTile struct */ -#define AT(num_frames, anim_speed) {(1 << 8) | num_frames, anim_speed, true, {INVALID_AIRPORTTILE, 0, NULL, NULL, INVALID_AIRPORTTILE}} +#define AT(num_frames, anim_speed) {(1 << 8) | num_frames, anim_speed, 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} |