ajout d'une condition d'arrêt (non testé) à timer.c
This commit is contained in:
parent
ea56827b2c
commit
70af067414
@ -59,13 +59,13 @@ int afficher_minute(int min){
|
||||
}
|
||||
|
||||
void creer_timer(void){
|
||||
int sec = 0,min=0;
|
||||
int sec = 0,min=0,x=1;
|
||||
unsigned long int temps = 0,seconde,pause=0;
|
||||
seconde=Microsecondes()+cycle;
|
||||
afficher_seconde(sec);
|
||||
afficher_minute(min);
|
||||
EcrireTexte(110,100,":",2);
|
||||
while(1){
|
||||
while(x=1){
|
||||
if(Microsecondes()>seconde){
|
||||
sec++;
|
||||
printf("%d\n",sec);
|
||||
@ -83,6 +83,9 @@ void creer_timer(void){
|
||||
if(Touche()==XK_space){
|
||||
pause=attendre();
|
||||
}
|
||||
if(Touche()==XK_Escape){
|
||||
x=0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user