# HG changeset patch # User Mike Becker # Date 1397677594 -7200 # Node ID a8346dcf7bbf8e174b5456bf56a5e9cd703fa914 # Parent 47162a7621daaf655dff34337b7d2d35222be65a faced struct alignment problems diff -r 47162a7621da -r a8346dcf7bbf src/chess/rules.h --- a/src/chess/rules.h Wed Apr 16 21:16:05 2014 +0200 +++ b/src/chess/rules.h Wed Apr 16 21:46:34 2014 +0200 @@ -81,10 +81,10 @@ uint8_t tofile; uint8_t torow; uint8_t promotion; + uint8_t check; + uint8_t capture; struct movetimeval timestamp; struct movetimeval movetime; - uint8_t check; - uint8_t capture; } Move; typedef struct MoveList MoveList; diff -r 47162a7621da -r a8346dcf7bbf src/network.h --- a/src/network.h Wed Apr 16 21:16:05 2014 +0200 +++ b/src/network.h Wed Apr 16 21:46:34 2014 +0200 @@ -48,7 +48,7 @@ #define NETCODE_STALEMATE 0x25 #define NETCODE_TIMEOVER 0x26 -#define NETCODE_VERSION 11 +#define NETCODE_VERSION 12 typedef struct { int fd; /* -1, if we are the client */