# HG changeset patch # User Darkvater # Date 1163858144 0 # Node ID 9cddbe5b67394c2fc81ea1a29f738a4fc2cd3262 # Parent b79d9ee0590d88eabbd16e706ac03753f80b16eb (svn r7203) -Cleanup: Donnu what Miham was smoking there, but removed it (assert_compile + 3) diff --git a/window.h b/window.h --- a/window.h +++ b/window.h @@ -472,11 +472,11 @@ 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;