Skip to content

Commit

Permalink
mumble_exe: fix expansion of baked-in MUMBLE_VERSION.
Browse files Browse the repository at this point in the history
It was removed in a code review without thinking too deeply about it.

Oops.
  • Loading branch information
mkrautz committed Jun 3, 2015
1 parent 5a8c7f5 commit b90b420
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/mumble_exe/mumble_exe.cpp
Expand Up @@ -50,7 +50,8 @@ static void Alert(LPCWSTR title, LPCWSTR msg) {
// string.
static const std::wstring GetMumbleVersion() {
#ifdef MUMBLE_VERSION
# define MUMTEXT(X) L#X
# define MUMXTEXT(X) L#X
# define MUMTEXT(X) MUMXTEXT(X)
const std::wstring version(MUMTEXT(MUMBLE_VERSION));
return version;
#else
Expand Down

0 comments on commit b90b420

Please sign in to comment.