diff --git a/jfile.cpp b/jfile.cpp index ea48aa0..aa3f99e 100644 --- a/jfile.cpp +++ b/jfile.cpp @@ -280,7 +280,7 @@ bool file_createFolder(const char* name) { strcat(tmp, name); #ifdef _WIN32 return mkdir(tmp)==0; -#elif +#else return mkdir(tmp, 0755)==0; #endif }