From 306307320fb3bd7aa870c0504189ef7577e8512f Mon Sep 17 00:00:00 2001 From: Widerstand Date: Tue, 28 Oct 2025 15:55:22 +0100 Subject: [PATCH] The path for raylib and unity librairy in "graficalGame.c" and "unit_tets" has been modificated correctly. --- Start_Windows/game.c | 1 + Start_Windows/graphicalGame.c | 2 +- Start_Windows/unit_tests.c | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Start_Windows/game.c b/Start_Windows/game.c index d8cc133..d3a8314 100644 --- a/Start_Windows/game.c +++ b/Start_Windows/game.c @@ -21,3 +21,4 @@ void showWordSalad(const char salad[MAX_SEARCH_FIELD_LEN][MAX_SEARCH_FIELD_LEN], { } + diff --git a/Start_Windows/graphicalGame.c b/Start_Windows/graphicalGame.c index fc648b6..7e04ee9 100644 --- a/Start_Windows/graphicalGame.c +++ b/Start_Windows/graphicalGame.c @@ -2,7 +2,7 @@ #include #include "graphicalGame.h" -#include "raylib.h" +#include "raylib/raylib.h" #define MAX_MESSAGE_LEN 256 #define MAX_SOLUTION_WORD_LEN 16 diff --git a/Start_Windows/unit_tests.c b/Start_Windows/unit_tests.c index 50a62cf..68f3efb 100644 --- a/Start_Windows/unit_tests.c +++ b/Start_Windows/unit_tests.c @@ -1,7 +1,7 @@ #include #include #include -#include "unity.h" +#include "unity/unity.h" #include "input.h" #include "game.h"