From 2612e584f6aab4515c7da5a7a6ea005d0e8344ba Mon Sep 17 00:00:00 2001 From: Olivier Gayot Date: Wed, 7 Jan 2015 22:02:49 +0100 Subject: Fix invalid blit position Signed-off-by: Olivier Gayot --- blits.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'blits.c') diff --git a/blits.c b/blits.c index 45d5ba5..502883f 100644 --- a/blits.c +++ b/blits.c @@ -60,9 +60,7 @@ void blit_ally_team(SURFACES *surfaces, POSITIONS *positions, struct team_t *tea for (int i = 0; i < team->chr_cnt; i++) { struct character_t *chr = &team->chrs[i]; - /* TODO blit either default or red surf */ - SDL_BlitSurface(chr->def_surf, NULL, surfaces->Pecran, &positions->Vpositionpersos[i]); - + SDL_BlitSurface(chr->surf, NULL, surfaces->Pecran, &chr->pos); if (!chr->alive) { positions->Vpositionmort.x=positions->Vpositionpersos[i].x+surfaces->Tperso[i]->w/2-surfaces->Pmort->w/2; -- cgit v1.2.3