From fca53e4dbc274874fbc1015aff908d3fb0ea953c Mon Sep 17 00:00:00 2001 From: Ivan Savenko Date: Thu, 25 Apr 2024 18:53:12 +0300 Subject: [PATCH] Do not show "(client)" in window title --- client/renderSDL/ScreenHandler.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/client/renderSDL/ScreenHandler.cpp b/client/renderSDL/ScreenHandler.cpp index 527b4ac75..f08f80c4d 100644 --- a/client/renderSDL/ScreenHandler.cpp +++ b/client/renderSDL/ScreenHandler.cpp @@ -37,8 +37,7 @@ SDL_Surface * screen = nullptr; //main screen surface SDL_Surface * screen2 = nullptr; //and hlp surface (used to store not-active interfaces layer) SDL_Surface * screenBuf = screen; //points to screen (if only advmapint is present) or screen2 (else) - should be used when updating controls which are not regularly redrawed -static const std::string NAME_AFFIX = "client"; -static const std::string NAME = GameConstants::VCMI_VERSION + std::string(" (") + NAME_AFFIX + ')'; //application name +static const std::string NAME = GameConstants::VCMI_VERSION; //application name std::tuple ScreenHandler::getSupportedScalingRange() const {