From 8ad943b4f3ec656d0374aaeb62b236f67dac3078 Mon Sep 17 00:00:00 2001 From: Alfred Eriksson Date: Sun, 11 Jan 2009 12:34:07 +0000 Subject: [PATCH] added linebreak on new version text to prevent overlap --- src/game/client/components/menus_browser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/client/components/menus_browser.cpp b/src/game/client/components/menus_browser.cpp index 14d65e2d8..32dc49c8c 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);