mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Consistent title bar + render information in mainmenu (#10764)
This commit is contained in:
parent
f345d00a43
commit
f4118a4fde
5 changed files with 28 additions and 14 deletions
|
@ -1390,9 +1390,21 @@ bool Game::createClient(const GameStartData &start_data)
|
|||
std::wstring str = utf8_to_wide(PROJECT_NAME_C);
|
||||
str += L" ";
|
||||
str += utf8_to_wide(g_version_hash);
|
||||
{
|
||||
const wchar_t *text = nullptr;
|
||||
if (simple_singleplayer_mode)
|
||||
text = wgettext("Singleplayer");
|
||||
else
|
||||
text = wgettext("Multiplayer");
|
||||
str += L" [";
|
||||
str += text;
|
||||
str += L"]";
|
||||
delete text;
|
||||
}
|
||||
str += L" [";
|
||||
str += driver->getName();
|
||||
str += L"]";
|
||||
|
||||
device->setWindowCaption(str.c_str());
|
||||
|
||||
LocalPlayer *player = client->getEnv().getLocalPlayer();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue