(svn r10888) -Fix (r10886): 64 bits alignment made a struct too big.
authorrubidium
Tue, 14 Aug 2007 12:13:12 +0000
changeset 7937 a65b8906ba7f
parent 7936 44af5524ed4e
child 7938 ee704bc1c5d3
(svn r10888) -Fix (r10886): 64 bits alignment made a struct too big.
src/network/network_gui.cpp
--- a/src/network/network_gui.cpp	Tue Aug 14 10:47:29 2007 +0000
+++ b/src/network/network_gui.cpp	Tue Aug 14 12:13:12 2007 +0000
@@ -35,9 +35,9 @@
 struct network_d {
 	PlayerID company;        // select company in network lobby
 	byte field;              // select text-field in start-server and game-listing
+	byte widget_id;          ///< The widget that has the pop-up input menu
 	NetworkGameList *server; // selected server in lobby and game-listing
 	FiosItem *map;           // selected map in start-server
-	byte widget_id;          ///< The widget that has the pop-up input menu
 };
 assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(network_d));