Correction d'une erreur dans le fichier affichage.c et correction du Makefile suite à la disparition de la nécessité du fichier timer.c et timer.h

This commit is contained in:
Axel PIETROIS 2022-12-11 12:40:31 +01:00
parent 9613b590c4
commit 07e292e152
2 changed files with 2 additions and 4 deletions

View File

@ -1,16 +1,14 @@
but : jeu_de_paires
OFILES = affichage.o \
timer.o \
menu_v2.o
CC = gcc
CFLAGS = -lgraph
timer.o : timer.c
affichage.o : timer.h affichage.c
affichage.o : affichage.c
menu_v2.o : affichage.h menu_v2.c

View File

@ -101,7 +101,7 @@ void Jeu(int x_g, int y_g, int x_fen, int y_fen, int* carte, int tab[4][5]){
}
void GenererGrille(int x_grille, int y_grille, int tab[4][5]){i
void GenererGrille(int x_grille, int y_grille, int tab[4][5]){
//Cette fonction génère la grille aléatoirement en fonction de la taille de la grille et l'insère sous forme de paires d'int de 1 à 10 dans le tableau tab
srand(Microsecondes());
int i,j;