summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/client.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/client.cpp b/src/client.cpp
index c05c744bc..dd8838244 100644
--- a/src/client.cpp
+++ b/src/client.cpp
@@ -372,8 +372,9 @@ void Client::gameInit()
SDL_EnableUNICODE(1);
SDL_EnableKeyRepeat(SDL_DEFAULT_REPEAT_DELAY, SDL_DEFAULT_REPEAT_INTERVAL);
- SDL_WM_SetCaption(branding.getValue("appName",
- "ManaPlus").c_str(), nullptr);
+ SDL_WM_SetCaption(strprintf("%s %s",
+ branding.getStringValue("appName").c_str(),
+ SMALL_VERSION).c_str(), nullptr);
ResourceManager *resman = ResourceManager::getInstance();