diff options
| author | Alfred Eriksson <somerunce@gmail.com> | 2009-01-11 12:34:07 +0000 |
|---|---|---|
| committer | Alfred Eriksson <somerunce@gmail.com> | 2009-01-11 12:34:07 +0000 |
| commit | 8ad943b4f3ec656d0374aaeb62b236f67dac3078 (patch) | |
| tree | 346c666206733d48d0e4d85fa270c09243cb0ab9 /src/game/client | |
| parent | 064ada28901ec07be77ec0e96c80ac6f2530a418 (diff) | |
| download | zcatch-8ad943b4f3ec656d0374aaeb62b236f67dac3078.tar.gz zcatch-8ad943b4f3ec656d0374aaeb62b236f67dac3078.zip | |
added linebreak on new version text to prevent overlap
Diffstat (limited to 'src/game/client')
| -rw-r--r-- | src/game/client/components/menus_browser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/client/components/menus_browser.cpp b/src/game/client/components/menus_browser.cpp index 14d65e2d..32dc49c8 100644 --- a/src/game/client/components/menus_browser.cpp +++ b/src/game/client/components/menus_browser.cpp @@ -602,7 +602,7 @@ void MENUS::render_serverbrowser(RECT main_view) char buf[512]; if(strcmp(client_latestversion(), "0") != 0) - str_format(buf, sizeof(buf), "Teeworlds %s is out! Download it at www.teeworlds.com! Current version: %s", client_latestversion(), GAME_VERSION); + str_format(buf, sizeof(buf), "Teeworlds %s is out! Download it at www.teeworlds.com!\nCurrent version: %s", client_latestversion(), GAME_VERSION); else str_format(buf, sizeof(buf), "Current version: %s", GAME_VERSION); ui_do_label(&status_toolbar, buf, 14.0f, -1); |