sources are broken

This commit is contained in:
Eduardo Bart
2011-04-22 21:12:28 -03:00
parent 96e0b1e909
commit 02ada0b82e
11 changed files with 19 additions and 42 deletions

View File

@@ -502,7 +502,7 @@ std::string Platform::getAppUserDir()
std::stringstream sdir;
sdir << PHYSFS_getUserDir() << "/." << win32.appName << "/";
if((mkdir(sdir.str().c_str()) != 0) && (errno != EEXIST))
logError("ERROR: Couldn't create directory for saving configuration file. (%s)", sdir.str().c_str());
flogError("ERROR: Couldn't create directory for saving configuration file. (%s)", sdir.str().c_str());
return sdir.str();
}