- [FIX] typo en un #ifdef

This commit is contained in:
2026-03-16 16:27:04 +01:00
parent d92a903c61
commit 6f5d90ee49

View File

@@ -280,7 +280,7 @@ bool file_createFolder(const char* name) {
strcat(tmp, name); strcat(tmp, name);
#ifdef _WIN32 #ifdef _WIN32
return mkdir(tmp)==0; return mkdir(tmp)==0;
#elif #else
return mkdir(tmp, 0755)==0; return mkdir(tmp, 0755)==0;
#endif #endif
} }