utils: mdldec: move XASH_WIN32 check after it is defined in build.h

This commit is contained in:
lewa_j
2025-10-11 20:38:06 +03:00
parent 5c0cc771bc
commit 851b3d6d70

View File

@@ -18,14 +18,14 @@ GNU General Public License for more details.
#include <string.h>
#include <sys/stat.h>
#include <errno.h>
#if XASH_WIN32
#include <direct.h>
#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 <direct.h>
#else
#define _mkdir( x ) mkdir(( x ), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH )
#endif
#include "settings.h"
#include "utils.h"