summaryrefslogtreecommitdiff
path: root/network_gui.c
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2006-10-20 10:48:46 +0000
committerDarkvater <darkvater@openttd.org>2006-10-20 10:48:46 +0000
commit5b72dd22e8f64bf43484fad783e06eff6c71c01a (patch)
tree83cd47aa98ba3aeebd5f98df93faea2c7d3a28bd /network_gui.c
parentdd8bd7be0ec9789d64f174e39da330f9d9d489ad (diff)
downloadopenttd-5b72dd22e8f64bf43484fad783e06eff6c71c01a.tar.xz
(svn r6854) -Codechange: Use DrawSringCentered instead of DrawStringMultiCenter for simple
strings if maximum width is set to zero anywyas.
Diffstat (limited to 'network_gui.c')
-rw-r--r--network_gui.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/network_gui.c b/network_gui.c
index 950233449..068f52116 100644
--- a/network_gui.c
+++ b/network_gui.c
@@ -306,17 +306,17 @@ static void NetworkGameWindowWndProc(Window *w, WindowEvent *e)
/* Draw the right menu */
GfxFillRect(311, 43, 539, 92, 157);
if (sel == NULL) {
- DrawStringMultiCenter(425, 58, STR_NETWORK_GAME_INFO, 0);
+ DrawStringCentered(425, 58, STR_NETWORK_GAME_INFO, 0);
} else if (!sel->online) {
SetDParamStr(0, sel->info.server_name);
- DrawStringMultiCenter(425, 68, STR_ORANGE, 2); // game name
+ DrawStringCentered(425, 68, STR_ORANGE, 0); // game name
- DrawStringMultiCenter(425, 132, STR_NETWORK_SERVER_OFFLINE, 2); // server offline
+ DrawStringCentered(425, 132, STR_NETWORK_SERVER_OFFLINE, 0); // server offline
} else { // show game info
uint16 y = 100;
const uint16 x = w->widget[15].left + 5;
- DrawStringMultiCenter(425, 48, STR_NETWORK_GAME_INFO, 0);
+ DrawStringCentered(425, 48, STR_NETWORK_GAME_INFO, 0);
SetDParamStr(0, sel->info.server_name);
@@ -365,12 +365,12 @@ static void NetworkGameWindowWndProc(Window *w, WindowEvent *e)
y += 2;
if (!sel->info.compatible) {
- DrawStringMultiCenter(425, y, STR_NETWORK_VERSION_MISMATCH, 2); // server mismatch
+ DrawStringCentered(425, y, STR_NETWORK_VERSION_MISMATCH, 0); // server mismatch
} else if (sel->info.clients_on == sel->info.clients_max) {
// Show: server full, when clients_on == clients_max
- DrawStringMultiCenter(425, y, STR_NETWORK_SERVER_FULL, 2); // server full
+ DrawStringCentered(425, y, STR_NETWORK_SERVER_FULL, 0); // server full
} else if (sel->info.use_password) {
- DrawStringMultiCenter(425, y, STR_NETWORK_PASSWORD, 2); // password warning
+ DrawStringCentered(425, y, STR_NETWORK_PASSWORD, 0); // password warning
}
y += 10;
@@ -850,7 +850,7 @@ static void NetworkLobbyWindowWndProc(Window *w, WindowEvent *e)
/* Draw info about selected company when it is selected in the left window */
GfxFillRect(174, 39, 403, 75, 157);
- DrawStringMultiCenter(290, 50, STR_NETWORK_COMPANY_INFO, 0);
+ DrawStringCentered(290, 50, STR_NETWORK_COMPANY_INFO, 0);
if (nd->company != (byte)-1) {
const uint x = 183;
const uint trunc_width = w->widget[6].right - x;