From 851b3d6d70b60694d9f4a78e69fec9289463cddf Mon Sep 17 00:00:00 2001 From: lewa_j Date: Sat, 11 Oct 2025 20:38:06 +0300 Subject: [PATCH] utils: mdldec: move XASH_WIN32 check after it is defined in build.h --- utils/mdldec/utils.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/utils/mdldec/utils.c b/utils/mdldec/utils.c index c0b27fcf..7acdf2c7 100644 --- a/utils/mdldec/utils.c +++ b/utils/mdldec/utils.c @@ -18,14 +18,14 @@ GNU General Public License for more details. #include #include #include -#if XASH_WIN32 - #include -#else - #define _mkdir( x ) mkdir(( x ), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH ) -#endif #include "xash3d_types.h" #include "port.h" #include "crtlib.h" +#if XASH_WIN32 +#include +#else +#define _mkdir( x ) mkdir(( x ), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH ) +#endif #include "settings.h" #include "utils.h"