diff options
author | Darkvater <Darkvater@openttd.org> | 2006-11-18 13:55:44 +0000 |
---|---|---|
committer | Darkvater <Darkvater@openttd.org> | 2006-11-18 13:55:44 +0000 |
commit | b2a5b4f0693b010e90bcc2863c05d1c8629d920f (patch) | |
tree | d1b1aaf9eecddcfd87c4d9ef686f86dc9cf8aa67 | |
parent | 62a9d7fdf3d4b79d4a6b1792dc5e66644351ee30 (diff) | |
download | openttd-b2a5b4f0693b010e90bcc2863c05d1c8629d920f.tar.xz |
(svn r7203) -Cleanup: Donnu what Miham was smoking there, but removed it (assert_compile + 3)
-rw-r--r-- | window.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -472,11 +472,11 @@ typedef struct { int32 scrollpos_x; int32 scrollpos_y; } vp_d; -assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(vp_d) + 3 * sizeof(byte)); // + 3 * byte is a hack from Miham +assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(vp_d)); // vp2_d is the same as vp_d, except for the data_# values.. typedef struct { - uint16 follow_vehicle; + VehicleID follow_vehicle; int32 scrollpos_x; int32 scrollpos_y; byte data_1; |