summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--jouer.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/jouer.c b/jouer.c
index bbe246d..7e6571f 100644
--- a/jouer.c
+++ b/jouer.c
@@ -225,9 +225,7 @@ int Fjouer (SURFACES *surfaces, POSITIONS *positions, struct team_t *ally, struc
{
unsigned int continuer=1;
int i;
- int Vtourennemi=0;
int Vtour;
- int Vnbennemis=0;
unsigned int gagne,perdu;
@@ -287,13 +285,13 @@ int Fjouer (SURFACES *surfaces, POSITIONS *positions, struct team_t *ally, struc
break;
}
}
- else if(Vtour==ENNEMI) // sinon si c'est le cpu qui joue
+ else if (Vtour == ENNEMI) // sinon si c'est le cpu qui joue
{
- while (!enemy->chrs[Vtourennemi].alive) {
- if (Vtourennemi < Vnbennemis) {
- Vtourennemi++;
- } else if (Vtourennemi == Vnbennemis) {
- Vtourennemi = 0;
+ while (!enemy->chrs[enemy->chr_cur].alive) {
+ if (enemy->chr_cur < enemy->chr_cnt) {
+ enemy->chr_cur++;
+ } else if (enemy->chr_cur == enemy->chr_cnt) {
+ enemy->chr_cur = 0;
}
}
/* TODO reactivate */