diff options
author | rubidium <rubidium@openttd.org> | 2007-06-21 19:18:49 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-06-21 19:18:49 +0000 |
commit | 4312cec2c0b309994f402b6b09196c294c1f2f86 (patch) | |
tree | 889cbea904cbd6e21a93cae601ffae85683155cc | |
parent | 328d369f6498d03a51a4150d4851fc59d4aa948e (diff) | |
download | openttd-4312cec2c0b309994f402b6b09196c294c1f2f86.tar.xz |
(svn r10263) -Fix (r10262): due to 64 bits alignment a struct became a little too large.
-rw-r--r-- | src/misc_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc_gui.cpp b/src/misc_gui.cpp index c608f340c..ffd8d84b7 100644 --- a/src/misc_gui.cpp +++ b/src/misc_gui.cpp @@ -1213,8 +1213,8 @@ enum QueryWidgets { struct query_d { void (*proc)(Window*, bool); ///< callback function executed on closing of popup. Window* points to parent, bool is true if 'yes' clicked, false otherwise - StringID message; ///< message shown for query window uint64 params[10]; ///< local copy of _decode_parameters + StringID message; ///< message shown for query window bool calledback; ///< has callback been executed already (internal usage for WE_DESTROY event) }; assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(query_d)); |