diff options
-rw-r--r-- | jouer.c | 2 | ||||
-rw-r--r-- | menuchoixpersos.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -309,7 +309,7 @@ int Fjouer (SURFACES *surfaces, POSITIONS *positions, struct team_t *ally, struc // on vérifie à présent si on a gagné ou si on a perdu ! gagne=1; perdu=1; - for(i = 0; i <= enemy->chr_cnt; i++) { + for (i = 0; i < enemy->chr_cnt; i++) { if (enemy->chrs[i].alive) gagne=0; } diff --git a/menuchoixpersos.c b/menuchoixpersos.c index 3a40875..f3f5cd3 100644 --- a/menuchoixpersos.c +++ b/menuchoixpersos.c @@ -109,7 +109,7 @@ static void generate_enemy_types(const struct team_t *ally_team, if (avg < 5) { /* easy */ - for (int i = 0; i <= count; i++) { + for (int i = 0; i < count; i++) { classes[i] = CLASS_WARRIOR_GOBELIN; } } else { |