summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarkvater <Darkvater@openttd.org>2007-01-02 18:43:25 +0000
committerDarkvater <Darkvater@openttd.org>2007-01-02 18:43:25 +0000
commitffe5bb671e27c2314e10283a23537ed8384be686 (patch)
treebe9146974287575a40bed7e1756665a26224a565
parent965d03ca35446f202975bb23528a915b071059d6 (diff)
downloadopenttd-ffe5bb671e27c2314e10283a23537ed8384be686.tar.xz
(svn r7757) -Fix (r7621): x64 did not compile because query_d was too big. Reorder the elements
a bit so it fits (alignment issues).
-rw-r--r--misc_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc_gui.c b/misc_gui.c
index 3f84192ad..693272c2f 100644
--- a/misc_gui.c
+++ b/misc_gui.c
@@ -1181,9 +1181,9 @@ enum QueryWidgets {
typedef 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
uint32 params[20]; ///< local copy of _decode_parameters
- void (*proc)(Window*, bool); ///< callback function executed on closing of popup. Window* points to parent, bool is true if 'yes' clicked, false otherwise
bool calledback; ///< has callback been executed already (internal usage for WE_DESTROY event)
} query_d;
assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(query_d));