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:
@@ -59,7 +59,7 @@ bool cIniFile::ReadFile()
|
||||
string keyname, valuename, value;
|
||||
string::size_type pLeft, pRight;
|
||||
|
||||
f.open( path.c_str(), ios::in);
|
||||
f.open( (FILE_IO_PREFIX + path).c_str(), ios::in);
|
||||
if ( f.fail())
|
||||
return false;
|
||||
|
||||
@@ -127,7 +127,7 @@ bool cIniFile::WriteFile()
|
||||
// a few bugs with ofstream. So ... fstream used.
|
||||
fstream f;
|
||||
|
||||
f.open( path.c_str(), ios::out);
|
||||
f.open( (FILE_IO_PREFIX + path).c_str(), ios::out);
|
||||
if ( f.fail())
|
||||
return false;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user