Browse Source

🐛 Fix ingame version message contaning the word "version" twice

pull/1896/head
Anders Jenbo 5 years ago
parent
commit
4d5972bcce
  1. 2
      Source/diablo.cpp

2
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);
},
});

Loading…
Cancel
Save