android: change default arguments to -console -log, as -dev enables cheats which may be undesired for users

This commit is contained in:
Alibek Omarov
2024-11-20 10:36:53 +03:00
parent cd3cc7e696
commit 880ae0fe7c
3 changed files with 5 additions and 5 deletions

View File

@@ -132,7 +132,7 @@ public class XashActivity extends SDLActivity {
}
String argv = getIntent().getStringExtra("argv");
if (argv == null) argv = "-dev 2 -log";
if (argv == null) argv = "-console -log";
return argv.split(" ");
}
}