From 3ef3076b0876730014a6f437fd905aa8ba0f79cd Mon Sep 17 00:00:00 2001 From: Dirk Sarodnick Date: Wed, 20 Mar 2024 01:31:03 +0100 Subject: [PATCH] minor build fix in games --- src/app/games/pong/pong_app.h | 2 +- src/app/games/ttt/ttt_app.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/games/pong/pong_app.h b/src/app/games/pong/pong_app.h index bbc6a8284..12b4e5fb9 100644 --- a/src/app/games/pong/pong_app.h +++ b/src/app/games/pong/pong_app.h @@ -22,7 +22,7 @@ #pragma once -#include "app\games\gamebase.h" +#include "app/games/gamebase.h" #define FIELD_WIDTH 240 #define FIELD_HEIGHT 240 diff --git a/src/app/games/ttt/ttt_app.h b/src/app/games/ttt/ttt_app.h index bc6a7a770..f64962cd2 100644 --- a/src/app/games/ttt/ttt_app.h +++ b/src/app/games/ttt/ttt_app.h @@ -21,7 +21,7 @@ #pragma once -#include "app\games\gamebase.h" +#include "app/games/gamebase.h" void tic_tac_toe_app_setup();