diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-01-16 22:15:56 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-01-16 22:15:56 +0000 |
| commit | 037569c4e52f37196275dbafec670f54da249cf8 (patch) | |
| tree | c3ad6246cb0f2a1ad81823095d24abeb560ca833 /src/game/client | |
| parent | 75c8b2e9a58e7052f484e43291baa2d9ae1a384a (diff) | |
| download | zcatch-037569c4e52f37196275dbafec670f54da249cf8.tar.gz zcatch-037569c4e52f37196275dbafec670f54da249cf8.zip | |
compile fixes
Diffstat (limited to 'src/game/client')
| -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 277cb675..595560b6 100644 --- a/src/game/client/gc_console.cpp +++ b/src/game/client/gc_console.cpp @@ -17,7 +17,7 @@ static unsigned int console_input_len = 0; static char console_input[256] = {0}; static int active = 0; -static char backlog[256][256] = {0}; +static char backlog[256][256] = {{0}}; static int backlog_len; static void client_console_print(const char *str) |