From 62cc1fff78e97205b1b2cc37e3df41ab7e00bc7f Mon Sep 17 00:00:00 2001 From: Diavolo Date: Sun, 29 Aug 2021 17:51:50 +0200 Subject: [PATCH] [Dvar] Make flag enum unsigned --- src/Game/Structs.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Game/Structs.hpp b/src/Game/Structs.hpp index f0c00bed..d0f48d9a 100644 --- a/src/Game/Structs.hpp +++ b/src/Game/Structs.hpp @@ -74,7 +74,7 @@ namespace Game ASSET_TYPE_INVALID = -1, }; - typedef enum + typedef enum : unsigned int { DVAR_FLAG_NONE = 0x0, //no flags DVAR_FLAG_SAVED = 0x1, //saves in config_mp.cfg for clients