diff --git a/graphique.c b/graphique.c index 0695ce5..335422d 100644 --- a/graphique.c +++ b/graphique.c @@ -63,10 +63,8 @@ void AfficheTemps(int minute, int seconde) { EcrireTexte(20, 900, temps, 2); } void AfficherEcranFin(int score) { + ChoisirCouleurDessin(CouleurParComposante(255,0,0)); EcrireTexte(500, 300, "Game Over!", 2); - char scoreText[20]; - snprintf(scoreText, 20, "Score: %d", score); - EcrireTexte(500, 400, scoreText, 2); } int PauseJeu(int perdu) { diff --git a/graphique.h b/graphique.h index 622a76d..81321b1 100644 --- a/graphique.h +++ b/graphique.h @@ -8,7 +8,7 @@ #define LARGEUR 60 #define TAILLE_CASE 19 #define NOMBRE_POMMES 5 -#define NOMBRE_OBSTACLES 20 +#define NOMBRE_OBSTACLES 10 #define CYCLE 100000L void Attendre(unsigned int millisecondes); void Graphique(); diff --git a/snake b/snake index 5a6ce10..36d252f 100755 Binary files a/snake and b/snake differ