diff options
author | darkvater <darkvater@openttd.org> | 2005-01-03 21:51:24 +0000 |
---|---|---|
committer | darkvater <darkvater@openttd.org> | 2005-01-03 21:51:24 +0000 |
commit | f6c4e3eb1cb555fdf80a0bb1f8a76542f00cca3e (patch) | |
tree | a40cd1f51445b318166a7dc66e7814727910130d | |
parent | 9a49fda8e632756adff78f9ead654becd7276bef (diff) | |
download | openttd-f6c4e3eb1cb555fdf80a0bb1f8a76542f00cca3e.tar.xz |
(svn r1356) -Fix: [1092363] missing GCC_PACK in oldloader.c (thx hafken)
-rw-r--r-- | oldloader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oldloader.c b/oldloader.c index 93b395119..08d2cb4e8 100644 --- a/oldloader.c +++ b/oldloader.c @@ -278,7 +278,7 @@ assert_compile(sizeof(OldVehicleDisasterUnion) == 4); typedef struct { byte state; -} OldVehicleShipUnion; +} GCC_PACK OldVehicleShipUnion; assert_compile(sizeof(OldVehicleShipUnion) == 1); typedef union { |