diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-03-17 01:06:21 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-03-17 01:06:21 +0000 |
| commit | 16280e411ce47f8a77c40a8b549c344052229fe0 (patch) | |
| tree | 2963c05e53ea637120c60bf90cbf3a828749a12b | |
| parent | ad19e0702efa07fbe7df073ade599573917b9250 (diff) | |
| download | zcatch-16280e411ce47f8a77c40a8b549c344052229fe0.tar.gz zcatch-16280e411ce47f8a77c40a8b549c344052229fe0.zip | |
fixed space in chat :D
| -rw-r--r-- | src/game/client/gc_client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/client/gc_client.cpp b/src/game/client/gc_client.cpp index df6c3efd..238404d0 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) { |