summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'src/main')
-rw-r--r--src/main/game/game.c (renamed from src/main/game.c)2
-rw-r--r--src/main/game/game.h (renamed from src/main/game.h)0
-rw-r--r--src/main/main.c2
3 files changed, 2 insertions, 2 deletions
diff --git a/src/main/game.c b/src/main/game/game.c
index 007bc8c..4addcf2 100644
--- a/src/main/game.c
+++ b/src/main/game/game.c
@@ -17,7 +17,7 @@
* along with Tris Game. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "engine/engine.h"
+#include "../engine/engine.h"
void
game_draw_field(int box_size, int x, int y)
diff --git a/src/main/game.h b/src/main/game/game.h
index 8148645..8148645 100644
--- a/src/main/game.h
+++ b/src/main/game/game.h
diff --git a/src/main/main.c b/src/main/main.c
index 4780e76..ea2bc91 100644
--- a/src/main/main.c
+++ b/src/main/main.c
@@ -23,7 +23,7 @@
#include <stdlib.h>
#include "ui/ui.h"
#include "engine/engine.h"
-#include "game.h"
+#include "game/game.h"
#define WIDTH 640
#define HEIGHT 480