makefile opérationnel (images ne marchent pas)

This commit is contained in:
2023-12-11 15:36:53 +01:00
parent 11d4d230d0
commit aad090d260
3 changed files with 20 additions and 19 deletions

View File

@@ -10,8 +10,8 @@ typedef struct {
Pomme creerPomme() {
Pomme pomme;
pomme.x = rand() % 60;
pomme.y = rand() % 40;
pomme.x = rand() % 59;
pomme.y = rand() % 39;
return pomme;
}