diff options
author | truelight <truelight@openttd.org> | 2006-08-20 11:51:10 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2006-08-20 11:51:10 +0000 |
commit | 79112c7dabbca6a1b560ae061fbb1d16089a0b2b (patch) | |
tree | 12eb618451b7fbdfabe467e904f7f58a60889afc | |
parent | 158539fed09bd8e4aca515bcc44e3bb5507c8ee2 (diff) | |
download | openttd-79112c7dabbca6a1b560ae061fbb1d16089a0b2b.tar.xz |
(svn r5971) -Fix: wrong struct in assert_compile (thomasdev)
-rw-r--r-- | window.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -386,7 +386,7 @@ typedef struct { int32 scroll_y; int32 subscroll; } smallmap_d; -assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(traindetails_d)); +assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(smallmap_d)); typedef struct { uint32 face; |