Changeset - r5473:e575bb668d6c
[Not reviewed]
master
0 1 0
Darkvater - 18 years ago 2007-01-02 18:43:25
darkvater@openttd.org
(svn r7757) -Fix (r7621): x64 did not compile because query_d was too big. Reorder the elements
a bit so it fits (alignment issues).
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
misc_gui.c
Show inline comments
 
@@ -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));
0 comments (0 inline, 0 general)