diff options
author | Charles Pigott <charlespigott@googlemail.com> | 2019-04-22 08:11:28 +0100 |
---|---|---|
committer | PeterN <peter@fuzzle.org> | 2019-04-29 17:40:22 +0100 |
commit | 96097b34a57feb7547c789b352e9b650fb2a9fea (patch) | |
tree | ba2a5b1917994b3956dfd626874fb6f61c5bceb0 /src/table | |
parent | 9f3928658bb3f8aaf21b17e0144cb09722474fff (diff) | |
download | openttd-96097b34a57feb7547c789b352e9b650fb2a9fea.tar.xz |
Codechange: Remove Direction*Byte types
Diffstat (limited to 'src/table')
-rw-r--r-- | src/table/airport_movement.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/table/airport_movement.h b/src/table/airport_movement.h index d9030f652..df368de89 100644 --- a/src/table/airport_movement.h +++ b/src/table/airport_movement.h @@ -34,7 +34,7 @@ struct AirportFTAbuildup { * @param flags Movement flags. * @param dir Direction. */ -#define AMD(x, y, flags, dir) { x, y, flags, {dir} } +#define AMD(x, y, flags, dir) { x, y, flags, dir } /** Dummy airport. */ static const AirportMovingData _airport_moving_data_dummy[] = { |