From 951a95c5965e55ae39a948266c0fb5ba605bbb53 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Tue, 21 May 2024 18:54:35 +0300 Subject: [PATCH] game_shared: vcs_info: fix undefined branch name --- game_shared/vcs_info.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game_shared/vcs_info.cpp b/game_shared/vcs_info.cpp index 0af53f33..72b39af8 100644 --- a/game_shared/vcs_info.cpp +++ b/game_shared/vcs_info.cpp @@ -9,5 +9,5 @@ const char *g_VCSInfo_Commit = "unknown-commit"; #ifdef XASH_BUILD_BRANCH const char *g_VCSInfo_Branch = XASH_BUILD_BRANCH; #else -const char *g_VCSInfo_Branch = "unknown-commit"; +const char *g_VCSInfo_Branch = "unknown-branch"; #endif