From e1ea0e5a601ab22d81b71a24c9fcfda923231341 Mon Sep 17 00:00:00 2001 From: DeaDDooMER Date: Thu, 8 Apr 2021 08:48:07 +0300 Subject: [PATCH] common: fix include pathes --- src/common/streams.c | 4 ++-- src/common/wadres.c | 4 ++-- src/common/wadres.h | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/common/streams.c b/src/common/streams.c index 685ace1..995dac5 100644 --- a/src/common/streams.c +++ b/src/common/streams.c @@ -1,5 +1,5 @@ -#include "common/streams.h" -#include "common/endianness.h" +#include "streams.h" +#include "endianness.h" #include #include diff --git a/src/common/wadres.c b/src/common/wadres.c index 88583b7..5861fe5 100644 --- a/src/common/wadres.c +++ b/src/common/wadres.c @@ -2,8 +2,8 @@ #include #include -#include "common/wadres.h" -#include "common/streams.h" +#include "wadres.h" +#include "streams.h" #include "cp866.h" typedef struct Entry { diff --git a/src/common/wadres.h b/src/common/wadres.h index b970dfb..f478fd1 100644 --- a/src/common/wadres.h +++ b/src/common/wadres.h @@ -1,7 +1,7 @@ #ifndef COMMON_WADRES_H_INCLUDED #define COMMON_WADRES_H_INCLUDED -#include "common/streams.h" +#include "streams.h" #define MAX_WADS 20 #define MAX_RESOURCES 2000 -- 2.29.2