summaryrefslogtreecommitdiff
path: root/src/video
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
commitedc1b3cdc2928cc1c1c6937fb232bf7804f39ad9 (patch)
tree75ac870129a02e9b519511dabcec2ea9ad586ad5 /src/video
parent20536882264e5c1545edede25d628f3480a517fc (diff)
downloadopenttd-edc1b3cdc2928cc1c1c6937fb232bf7804f39ad9.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')
-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;