From caa37c3244c76aa2824312df08f42ee48d2e30fc Mon Sep 17 00:00:00 2001 From: Mark Vejvoda Date: Thu, 1 Nov 2012 19:01:03 +0000 Subject: [PATCH] - working on arm support --- source/glest_game/network/network_types.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/glest_game/network/network_types.h b/source/glest_game/network/network_types.h index 2cb97bb58..52f0daea1 100644 --- a/source/glest_game/network/network_types.h +++ b/source/glest_game/network/network_types.h @@ -40,6 +40,7 @@ class World; // class NetworkString // ===================================================== +#pragma pack(push, 1) template class NetworkString{ private: @@ -63,6 +64,7 @@ public: string getString() const { return (buffer[0] != '\0' ? buffer : ""); } }; +#pragma pack(pop) // ===================================================== // class NetworkCommand