diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-03-17 01:41:11 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-03-17 01:41:11 +0000 |
| commit | 22360b5d795164df0c7a80a88f5b7cb1c230e6f0 (patch) | |
| tree | df7a55964ebd5a054689ed53ad7b1c56b4284314 /src/game/client/gc_console.cpp | |
| parent | 412958bae395c50892ce390b84e309ce827e9b13 (diff) | |
| download | zcatch-22360b5d795164df0c7a80a88f5b7cb1c230e6f0.tar.gz zcatch-22360b5d795164df0c7a80a88f5b7cb1c230e6f0.zip | |
blood color depending on skin fixed
Diffstat (limited to 'src/game/client/gc_console.cpp')
| -rw-r--r-- | src/game/client/gc_console.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/client/gc_console.cpp b/src/game/client/gc_console.cpp index d0714009..37e50948 100644 --- a/src/game/client/gc_console.cpp +++ b/src/game/client/gc_console.cpp @@ -72,7 +72,7 @@ public: void handle_event(INPUT_EVENT e) { - if (!(e.ch >= 0 && e.ch < 32)) + if (e.ch >= 32) { if (input_len < sizeof(input) - 1) { |