[android] Disable command line
This commit is contained in:
parent
3f13d69eb3
commit
40b45a8442
@ -31,9 +31,13 @@ std::string CommandLine::m_exec_name="";
|
||||
*/
|
||||
void CommandLine::init(unsigned int argc, char *argv[])
|
||||
{
|
||||
#ifdef ANDROID
|
||||
m_exec_name = "";
|
||||
#else
|
||||
m_exec_name = argv[0];
|
||||
for(unsigned int i=1; i<argc; i++)
|
||||
m_argv.push_back(argv[i]);
|
||||
#endif
|
||||
} // CommandLine
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
|
Loading…
x
Reference in New Issue
Block a user