diff options
-rw-r--r-- | gob/scenery.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gob/scenery.h b/gob/scenery.h index 1ae1427ffb..90b098ea14 100644 --- a/gob/scenery.h +++ b/gob/scenery.h @@ -26,10 +26,10 @@ namespace Gob { #pragma START_PACK_STRUCTS typedef struct Scen_PieceDesc { - int16 left; - int16 right; - int16 top; - int16 bottom; + int16 left; //NOTE: + int16 right; //These are stored in Little Endian format + int16 top; //And should be converted by client code when accessed + int16 bottom; //i.e. use FROM_LE_16() } GCC_PACK Scen_PieceDesc; typedef struct Scen_StaticPlane { |