diff options
| author | Jakob Fries <jakob.fries@gmail.com> | 2007-08-14 13:20:33 +0000 |
|---|---|---|
| committer | Jakob Fries <jakob.fries@gmail.com> | 2007-08-14 13:20:33 +0000 |
| commit | f8884ded02b0965cc7e8cd2d9c3b75ffb81ccd20 (patch) | |
| tree | 565916a7abff96103a43a8926d17b60dc29574c5 /src/game/client | |
| parent | 77b0c51bbf43d9534d6c52296ce1bef4f7fd1966 (diff) | |
| download | zcatch-f8884ded02b0965cc7e8cd2d9c3b75ffb81ccd20.tar.gz zcatch-f8884ded02b0965cc7e8cd2d9c3b75ffb81ccd20.zip | |
hands.
Diffstat (limited to 'src/game/client')
| -rw-r--r-- | src/game/client/game_client.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/game/client/game_client.cpp b/src/game/client/game_client.cpp index 4eddebbd..b4085f17 100644 --- a/src/game/client/game_client.cpp +++ b/src/game/client/game_client.cpp @@ -847,6 +847,11 @@ static void render_tee(animstate *anim, int skin, int emote, vec2 dir, vec2 pos) gfx_quads_draw(position.x-4+direction.x*4, position.y-8+direction.y*3, basesize, h); gfx_quads_draw(position.x+4+direction.x*4, position.y-8+direction.y*3, -basesize, h); } + + // draw hands + select_sprite(outline?SPRITE_TEE_HAND_OUTLINE:SPRITE_TEE_HAND, 0, 0, shift*4); + gfx_quads_draw(position.x, position.y); + } // draw feet |