From c433f9aaa3c62993bf7eb3b7b09f73dcd07a9527 Mon Sep 17 00:00:00 2001 From: Abdelrahman Said Date: Fri, 2 Jan 2026 16:10:22 +0000 Subject: [PATCH] Fix MSVC includes --- src/os/shell/commander/commander_output.h | 2 +- src/os/shell/termcolour/win/termcolour_win.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/os/shell/commander/commander_output.h b/src/os/shell/commander/commander_output.h index 7fc7ffd..e9f6a31 100644 --- a/src/os/shell/commander/commander_output.h +++ b/src/os/shell/commander/commander_output.h @@ -32,7 +32,7 @@ struct CMDResult { b8 exited; #ifdef WAPP_PLATFORM_WINDOWS - #include "../../../../common/misc/misc_utils.h" + #include "../../../common/misc/misc_utils.h" wapp_misc_utils_padding_size(sizeof(b8) + sizeof(i32) + sizeof(CMDError)); #endif // !WAPP_PLATFORM_WINDOWS }; diff --git a/src/os/shell/termcolour/win/termcolour_win.c b/src/os/shell/termcolour/win/termcolour_win.c index d6219a6..b5495f5 100644 --- a/src/os/shell/termcolour/win/termcolour_win.c +++ b/src/os/shell/termcolour/win/termcolour_win.c @@ -7,7 +7,7 @@ #ifdef WAPP_PLATFORM_WINDOWS #include "../terminal_colours.h" -#include "../../../../../common/misc/misc_utils.h" +#include "../../../../common/misc/misc_utils.h" #include #define WIN32_LEAN_AND_MEAN