diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-08-27 19:50:33 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-08-27 19:50:33 +0000 |
| commit | ae364d4d295f93b42ccdbd5f9e91bd26227cf9f1 (patch) | |
| tree | d24974806ee0e9e9a9542a119bc932296773a0ea /src/game/client/components/console.hpp | |
| parent | 8f23204eef956177855ee8fb9c1cc21cd08560f4 (diff) | |
| download | zcatch-ae364d4d295f93b42ccdbd5f9e91bd26227cf9f1.tar.gz zcatch-ae364d4d295f93b42ccdbd5f9e91bd26227cf9f1.zip | |
scoreboard fixed
Diffstat (limited to 'src/game/client/components/console.hpp')
| -rw-r--r-- | src/game/client/components/console.hpp | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/src/game/client/components/console.hpp b/src/game/client/components/console.hpp index 8c6a9c72..9b60185c 100644 --- a/src/game/client/components/console.hpp +++ b/src/game/client/components/console.hpp @@ -1,11 +1,4 @@ -extern "C" { - #include <engine/e_client_interface.h> - #include <engine/e_config.h> - #include <engine/e_console.h> - #include <engine/e_ringbuffer.h> - #include <engine/client/ec_font.h> -} - +#include <engine/e_client_interface.h> #include <game/client/component.hpp> class CONSOLE : public COMPONENT @@ -14,11 +7,11 @@ class CONSOLE : public COMPONENT { public: char history_data[65536]; - RINGBUFFER *history; + struct RINGBUFFER *history; char *history_entry; char backlog_data[65536]; - RINGBUFFER *backlog; + struct RINGBUFFER *backlog; LINEINPUT input; |