From 16280e411ce47f8a77c40a8b549c344052229fe0 Mon Sep 17 00:00:00 2001 From: Magnus Auvinen Date: Mon, 17 Mar 2008 01:06:21 +0000 Subject: [PATCH] fixed space in chat :D --- src/game/client/gc_client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/client/gc_client.cpp b/src/game/client/gc_client.cpp index df6c3efde..238404d00 100644 --- a/src/game/client/gc_client.cpp +++ b/src/game/client/gc_client.cpp @@ -805,7 +805,7 @@ void render_game() { INPUT_EVENT e = inp_get_event(i); - if(e.ch > 32) + if(e.ch >= 32) { if (chat_input_len < sizeof(chat_input) - 1) {