(libretro) Attempt to further fix windows builds (Again).

This commit is contained in:
orbea 2018-08-29 11:31:44 -07:00 committed by Brad Parker
parent 6cf0eeb315
commit 13fd643c6a

View File

@ -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));