From 13fd643c6a97082890bd75938bcbaa428518ba14 Mon Sep 17 00:00:00 2001 From: orbea Date: Wed, 29 Aug 2018 11:31:44 -0700 Subject: [PATCH] (libretro) Attempt to further fix windows builds (Again). --- sdl2/dosio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdl2/dosio.c b/sdl2/dosio.c index 9d84a84..3115039 100755 --- a/sdl2/dosio.c +++ b/sdl2/dosio.c @@ -190,7 +190,7 @@ short file_rename(const char *existpath, const char *newpath) { short file_dircreate(const char *path) { #if !(defined(__LIBRETRO__) && defined(VITA)) -#if defined(_WIN32) && (!defined(__MINGW32__) && !defined(__MINGW64_VERSION_MAJOR)) +#if (defined(__LIBRETRO__) && defined(_WIN32)) || (defined(WIN32) && (!defined(__MINGW32__) && !defined(__MINGW64_VERSION_MAJOR))) return((short)mkdir(path)); #else return((short)mkdir(path, 0777));