From 82836873e96d90210571dcc268c30006c4218392 Mon Sep 17 00:00:00 2001 From: Dennis Braun Date: Sat, 10 Sep 2022 22:14:36 +0200 Subject: [PATCH] Fix build with portsmf system library Forwarded: not-yet Gbp-Pq: Name 0009-fix_build_with_portsmf_sys_library.patch --- lib-src/header-substitutes/allegro.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib-src/header-substitutes/allegro.h b/lib-src/header-substitutes/allegro.h index 44c508b4..1e909a99 100644 --- a/lib-src/header-substitutes/allegro.h +++ b/lib-src/header-substitutes/allegro.h @@ -7,16 +7,16 @@ #pragma warning( push ) #pragma warning( disable : 4100) -#include "../portsmf/allegro.h" +#include #pragma warning( pop ) #elif defined(__linux__) #include // Allegro include fails if this header isn't included due to no memcpy -#include "../portsmf/allegro.h" +#include #else //_MSC_VER -#include "../portsmf/allegro.h" +#include #endif //_MSC_VER -- 2.30.2