diff --git a/graphique.c b/graphique.c index b3ee0ba..0695ce5 100644 --- a/graphique.c +++ b/graphique.c @@ -63,9 +63,10 @@ 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 81321b1..622a76d 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 10 +#define NOMBRE_OBSTACLES 20 #define CYCLE 100000L void Attendre(unsigned int millisecondes); void Graphique(); diff --git a/snake b/snake new file mode 100755 index 0000000..5a6ce10 Binary files /dev/null and b/snake differ