1
0

MCServer should run just fine on Android now :D

The server is also stoppable from Android

git-svn-id: http://mc-server.googlecode.com/svn/trunk@743 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
faketruth
2012-08-16 20:28:14 +00:00
parent 1c4c0b5698
commit 33ca4d5003
11 changed files with 54 additions and 20 deletions

View File

@@ -14,9 +14,9 @@ void cMakeDir::MakeDir(const AString & a_Directory)
Attrib.nLength = sizeof(SECURITY_ATTRIBUTES);
Attrib.lpSecurityDescriptor = NULL;
Attrib.bInheritHandle = false;
::CreateDirectory(a_Directory.c_str(), &Attrib);
::CreateDirectory( (FILE_IO_PREFIX + a_Directory).c_str(), &Attrib);
#else
mkdir(a_Directory.c_str(), S_IRWXU | S_IRWXG | S_IRWXO);
mkdir( (FILE_IO_PREFIX + a_Directory).c_str(), S_IRWXU | S_IRWXG | S_IRWXO);
#endif
}