diff options
| author | Jakob Fries <jakob.fries@gmail.com> | 2008-01-30 13:15:58 +0000 |
|---|---|---|
| committer | Jakob Fries <jakob.fries@gmail.com> | 2008-01-30 13:15:58 +0000 |
| commit | ba560c861e8b79f9cfd71be49c55282a3eaf212c (patch) | |
| tree | 50d6fe92fdb8c6e2adbc5820f329905902b2018c /src/game/client/gc_hooks.cpp | |
| parent | 6c362f91ebdd4e32e75f747c9f6fbe71eb84fd56 (diff) | |
| download | zcatch-ba560c861e8b79f9cfd71be49c55282a3eaf212c.tar.gz zcatch-ba560c861e8b79f9cfd71be49c55282a3eaf212c.zip | |
animated console, added log messages for team changes and ctf flag events
Diffstat (limited to 'src/game/client/gc_hooks.cpp')
| -rw-r--r-- | src/game/client/gc_hooks.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/game/client/gc_hooks.cpp b/src/game/client/gc_hooks.cpp index a31b7201..3c8d801d 100644 --- a/src/game/client/gc_hooks.cpp +++ b/src/game/client/gc_hooks.cpp @@ -296,16 +296,13 @@ extern "C" void modc_render() if(client_state() == CLIENTSTATE_ONLINE) { render_game(); - if (console_active()) - console_render(); } else { menu_render(); - if (console_active()) - console_render(); - return; } + + console_render(); } extern "C" int modc_snap_input(int *data) |