From 4d5972bccebade8e25d0a7a54ce9ebc99bc2acc4 Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Sat, 8 May 2021 01:10:16 +0200 Subject: [PATCH] :bug: Fix ingame version message contaning the word "version" twice --- Source/diablo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/diablo.cpp b/Source/diablo.cpp index 3ac3c5fe3..a99f8c3fa 100644 --- a/Source/diablo.cpp +++ b/Source/diablo.cpp @@ -2193,7 +2193,7 @@ void initKeymapActions() _("Nightmare"), _("Hell"), }; - sprintf(pszStr, _("%s, version = %s, mode = %s"), gszProductName, gszVersionNumber, difficulties[sgGameInitInfo.nDifficulty]); + sprintf(pszStr, _("%s, version = %s, mode = %s"), gszProductName, PROJECT_VERSION, difficulties[sgGameInitInfo.nDifficulty]); NetSendCmdString(1 << myplr, pszStr); }, });