From 3999eaa0e0033cf0d493a1d7c824b23ebe583308 Mon Sep 17 00:00:00 2001
From: Paul GEORGES <43345813+paulgeorges1998@users.noreply.github.com>
Date: Sun, 16 Dec 2018 15:40:18 +0100
Subject: [PATCH] Correction bugs

---
 main.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/main.c b/main.c
index 8d6825c..db15ebf 100644
--- a/main.c
+++ b/main.c
@@ -64,7 +64,7 @@ int main(int argc, char *argv[])
 
     SDL_Color couleur = {255, 20, 20, 0};
 
-    postext1.x = 0;
+    postext1.x = 10;
     postext1.y = 0;
     postext1.w = 150;
     postext1.h = 50;
@@ -244,14 +244,14 @@ int main(int argc, char *argv[])
             while (caractereActuel != EOF){
                 caractereActuel = fgetc(fichier);
             }
-            char score[11];
+            char score[13];
             sprintf(score, "Score : %d \n", nbTues);
             fputs(score, fichier);
             fclose(fichier);
             gameover = true;
           }
 
-          if(SDL_GetTicks() > tempsPrecedentTexte + 1000){
+          if(SDL_GetTicks() > tempsPrecedentTexte + 500){
             char sc[13];
             char pv[13];
             char ma[13];
-- 
GitLab