From 8e5f2ccedaed0b12614819eed7df7ba03973c924 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 4 Oct 2023 18:59:57 +0200 Subject: [PATCH] we really do not need to pack the GAMEOPTIONS struct... --- source/games/blood/src/levels.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/source/games/blood/src/levels.h b/source/games/blood/src/levels.h index bea96c66f..68b2b0a16 100644 --- a/source/games/blood/src/levels.h +++ b/source/games/blood/src/levels.h @@ -29,8 +29,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. BEGIN_BLD_NS -#pragma pack(push, 1) - enum EGameFlag { GF_AdvanceLevel = 1, @@ -55,8 +53,6 @@ struct GAMEOPTIONS { bool bKeepKeysOnRespawn; }; -#pragma pack(pop) - extern GAMEOPTIONS gSingleGameOptions; extern GAMEOPTIONS gGameOptions; extern int gSkill;