diff options
| author | Jakob Fries <jakob.fries@gmail.com> | 2007-08-14 13:23:18 +0000 |
|---|---|---|
| committer | Jakob Fries <jakob.fries@gmail.com> | 2007-08-14 13:23:18 +0000 |
| commit | 42d519e893109c2e46db026624a1c7a8b2121b4c (patch) | |
| tree | 79c540ea0fcb227f83333471649055d3b89c2351 | |
| parent | f8884ded02b0965cc7e8cd2d9c3b75ffb81ccd20 (diff) | |
| download | zcatch-42d519e893109c2e46db026624a1c7a8b2121b4c.tar.gz zcatch-42d519e893109c2e46db026624a1c7a8b2121b4c.zip | |
reverted bogus commit
| -rw-r--r-- | datasrc/teewars.ds | 2 | ||||
| -rw-r--r-- | src/game/client/game_client.cpp | 5 |
2 files changed, 0 insertions, 7 deletions
diff --git a/datasrc/teewars.ds b/datasrc/teewars.ds index aa9680cb..55e38fd1 100644 --- a/datasrc/teewars.ds +++ b/datasrc/teewars.ds @@ -568,8 +568,6 @@ sprites { tee_body_outline 4 0 4 4 tee_foot 8 3 2 1 tee_foot_outline 13 2 2 1 - tee_hand 8 0 2 2 - tee_hand_outline 10 0 2 2 tee_eye_normal 10 2 1 1 tee_eye_pain 11 3 1 1 diff --git a/src/game/client/game_client.cpp b/src/game/client/game_client.cpp index b4085f17..4eddebbd 100644 --- a/src/game/client/game_client.cpp +++ b/src/game/client/game_client.cpp @@ -847,11 +847,6 @@ 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 |