From 85f772ba569c0af777aaa453838761d652899620 Mon Sep 17 00:00:00 2001 From: def Date: Tue, 23 Jun 2020 08:02:09 +0200 Subject: [PATCH] Fix array as initializer g++ 4.9 error (fixes #2320) --- src/game/server/teeinfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/server/teeinfo.h b/src/game/server/teeinfo.h index 9f15eccfe..66b02b395 100644 --- a/src/game/server/teeinfo.h +++ b/src/game/server/teeinfo.h @@ -6,7 +6,7 @@ class CTeeInfo public: constexpr static const float DARKEST_LGT_7 = 61/255.0f; - char m_SkinName[64] = ""; + char m_SkinName[64] = {'\0'}; int m_UseCustomColor = 0; int m_ColorBody = 0; int m_ColorFeet = 0;