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:
@@ -77,6 +77,9 @@ cRoot::~cRoot()
|
||||
|
||||
void cRoot::InputThread(void* a_Params)
|
||||
{
|
||||
#if defined(ANDROID_NDK)
|
||||
return;
|
||||
#else
|
||||
cRoot& self = *(cRoot*)a_Params;
|
||||
|
||||
while( !(self.m_bStop || self.m_bRestart) )
|
||||
@@ -85,6 +88,7 @@ void cRoot::InputThread(void* a_Params)
|
||||
std::getline(std::cin, Command);
|
||||
self.ServerCommand( Command.c_str() );
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user