This commit is contained in:
Бранимир Караџић
2024-06-22 11:41:07 -07:00
parent c5b7b46299
commit 09e410ce5e
2 changed files with 4 additions and 4 deletions

View File

@@ -800,7 +800,7 @@ namespace bx
#if BX_CRT_MSVC
int32_t result = ::_mkdir(_filePath.getCPtr() );
#elif BX_CRT_MINGW
int32_t result = ::mkdir(_filePath.getCPtr());
int32_t result = ::mkdir(_filePath.getCPtr() );
#elif BX_CRT_NONE
BX_UNUSED(_filePath);
int32_t result = -1;