summaryrefslogtreecommitdiff
path: root/src/video/dedicated_v.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-08-12 20:31:49 +0000
committerrubidium <rubidium@openttd.org>2008-08-12 20:31:49 +0000
commit203b5eed278040b7ecb41a2a2ef5ae27a9b0ec21 (patch)
tree75ac870129a02e9b519511dabcec2ea9ad586ad5 /src/video/dedicated_v.cpp
parent4ae352d288257aa7566775c1db1f35435cc751d9 (diff)
downloadopenttd-203b5eed278040b7ecb41a2a2ef5ae27a9b0ec21.tar.xz
(svn r14055) -Codechange: increase buffers for (dedicated) consoles as they couldn't use the full "extent" of the new chat message limit.
Diffstat (limited to 'src/video/dedicated_v.cpp')
-rw-r--r--src/video/dedicated_v.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video/dedicated_v.cpp b/src/video/dedicated_v.cpp
index 60a20f072..c54f3d826 100644
--- a/src/video/dedicated_v.cpp
+++ b/src/video/dedicated_v.cpp
@@ -216,7 +216,7 @@ static uint32 GetTime()
static void DedicatedHandleKeyInput()
{
- static char input_line[200] = "";
+ static char input_line[1024] = "";
if (!InputWaiting()) return;