diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-08-30 21:09:13 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-08-30 21:09:13 +0000 |
| commit | b03b048974248e62509f2740c10370258c49c997 (patch) | |
| tree | 4474810951f30923a1b380ddd3945cbb5c9c5572 /src/game/client/components/debughud.cpp | |
| parent | 8949d77fc4b84869c3b2212afa28930ee2d6cfdd (diff) | |
| download | zcatch-b03b048974248e62509f2740c10370258c49c997.tar.gz zcatch-b03b048974248e62509f2740c10370258c49c997.zip | |
removed gc_client.hpp
Diffstat (limited to 'src/game/client/components/debughud.cpp')
| -rw-r--r-- | src/game/client/components/debughud.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/game/client/components/debughud.cpp b/src/game/client/components/debughud.cpp index 0c8b0b91..7bb48307 100644 --- a/src/game/client/components/debughud.cpp +++ b/src/game/client/components/debughud.cpp @@ -12,7 +12,6 @@ extern "C" { #include <game/client/gameclient.hpp> #include <game/client/animstate.hpp> -#include <game/client/gc_client.hpp> #include <game/client/gc_render.hpp> //#include "controls.hpp" @@ -55,7 +54,7 @@ void DEBUGHUD::render_tuning() float y = 50.0f; int count = 0; - for(int i = 0; i < tuning.num(); i++) + for(int i = 0; i < gameclient.tuning.num(); i++) { char buf[128]; float current, standard; @@ -81,7 +80,7 @@ void DEBUGHUD::render_tuning() gfx_text(0x0, x-w, y+count*6, 5, buf, -1); x += 5.0f; - gfx_text(0x0, x, y+count*6, 5, tuning.names[i], -1); + gfx_text(0x0, x, y+count*6, 5, gameclient.tuning.names[i], -1); count++; } |