From 94e6c3bc9ffef75bb605d186f63023674865e272 Mon Sep 17 00:00:00 2001 From: Come Thuret Date: Sun, 11 Dec 2022 20:05:05 +0100 Subject: [PATCH] derniers ajustements --- affichage.c | 1 - timer.c | 1 - 2 files changed, 2 deletions(-) diff --git a/affichage.c b/affichage.c index 6f5f1b4..16e1f21 100644 --- a/affichage.c +++ b/affichage.c @@ -183,7 +183,6 @@ int essay(int grille_x){ if(temps_actuel > temps_microsec + 1000000){ temps_microsec = temps_actuel; temps_ecoule = temps_ecoule + 1; - printf("%d\n", temps_ecoule); } } if (temps_ecoule == temps_ancien+1){ diff --git a/timer.c b/timer.c index f185e81..10ad3f9 100644 --- a/timer.c +++ b/timer.c @@ -7,7 +7,6 @@ unsigned long timer(unsigned long temps_ecoule, unsigned long temps_microsec){ if (temps_actuel > temps_microsec + 1000000){ temps_microsec = temps_actuel; temps_ecoule += 1; - printf("%d",temps_ecoule); } return temps_ecoule; }