summaryrefslogtreecommitdiff
path: root/network_gui.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2004-12-23 20:33:57 +0000
committertruelight <truelight@openttd.org>2004-12-23 20:33:57 +0000
commit97ec7de9e6448f619c7d975c38eedf1764088730 (patch)
tree433cfbb6b8cdc7c766964d948ed5c397d4530045 /network_gui.c
parentffed7d6834dfd4d6f7f980b73e485a83f29cdcd9 (diff)
downloadopenttd-97ec7de9e6448f619c7d975c38eedf1764088730.tar.xz
(svn r1263) -Fix: [Network] Client-names are limited (serverside) to 25 chars
-Fix: You can enter some more chars in the chatbox
Diffstat (limited to 'network_gui.c')
-rw-r--r--network_gui.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/network_gui.c b/network_gui.c
index 94d3f7310..4fa7e082b 100644
--- a/network_gui.c
+++ b/network_gui.c
@@ -1408,9 +1408,9 @@ press_ok:;
static const Widget _chat_window_widgets[] = {
{ WWT_IMGBTN, 14, 0, 639, 0, 13, 0x0, STR_NULL}, // background
-{ WWT_IMGBTN, 14, 2, 379, 1, 12, 0x0, STR_NULL}, // text box
-{ WWT_TEXTBTN, 14, 380, 509, 1, 12, STR_NETWORK_SEND,STR_NULL}, // send button
-{ WWT_TEXTBTN, 14, 510, 639, 1, 12, STR_012E_CANCEL, STR_NULL}, // cancel button
+{ WWT_IMGBTN, 14, 2, 399, 1, 12, 0x0, STR_NULL}, // text box
+{ WWT_TEXTBTN, 14, 400, 519, 1, 12, STR_NETWORK_SEND,STR_NULL}, // send button
+{ WWT_TEXTBTN, 14, 520, 639, 1, 12, STR_012E_CANCEL, STR_NULL}, // cancel button
{ WIDGETS_END},
};