diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2007-12-21 21:48:09 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2007-12-21 21:48:09 +0000 |
| commit | 213d194c3bf49d21b05c59e63a04cb5b5fba5613 (patch) | |
| tree | 42cd123bbee1f8a9afcee2bf7bd8f36267d192a5 /src | |
| parent | e06dd7d5d7e3637d07181e0eaaea87a4e4bb5111 (diff) | |
| download | zcatch-213d194c3bf49d21b05c59e63a04cb5b5fba5613.tar.gz zcatch-213d194c3bf49d21b05c59e63a04cb5b5fba5613.zip | |
fixed flags color
Diffstat (limited to 'src')
| -rw-r--r-- | src/game/client/gc_client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/client/gc_client.cpp b/src/game/client/gc_client.cpp index 75c47129..275370e6 100644 --- a/src/game/client/gc_client.cpp +++ b/src/game/client/gc_client.cpp @@ -1063,7 +1063,7 @@ static void render_flag(const obj_flag *prev, const obj_flag *current) if(local_info && current->carried_by == local_info->clientid) pos = local_character_pos; - gfx_setcolor(current->team ? 0 : 1,0,current->team ? 1 : 0,1); + //gfx_setcolor(current->team ? 0 : 1,0,current->team ? 1 : 0,1); //draw_sprite(pos.x, pos.y, size); gfx_quads_draw(pos.x, pos.y-size*0.75f, size, size*2); gfx_quads_end(); |