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:
parent
9613b590c4
commit
07e292e152
4
Makefile
4
Makefile
@ -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
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user