- [FIX] Arreglat glActiveTexture en Windows
@@ -278,7 +278,11 @@ bool file_createFolder(const char* name) {
char tmp[256];
strcpy(tmp, "./");
strcat(tmp, name);
#ifdef _WIN32
return mkdir(tmp)==0;
#elif
return mkdir(tmp, 0755)==0;
#endif
}
static bool has_extension(const std::string &name, const char *ext)
The note is not visible to the blocked user.