disable forced logging on android

This commit is contained in:
radius 2019-03-07 08:26:27 -05:00
parent 8fd0aedc56
commit 0c2f5093b2
2 changed files with 2 additions and 1 deletions

2
dirs.c
View File

@ -314,6 +314,8 @@ void dir_check_defaults(void)
*/
#ifdef ORBIS
if (filestream_exists("host0:app/custom.ini"))
#elif defined(ANDROID)
if (filestream_exists("host0:app/custom.ini"))
#else
if (filestream_exists("custom.ini"))
#endif

View File

@ -140,7 +140,6 @@ public final class UserPreferences
Log.i(TAG, "dst dir is: " + dst_path);
Log.i(TAG, "dst subdir is: " + dst_path_subdir);
config.setBoolean("log_verbosity", true);
config.setString("bundle_assets_src_path", ctx.getApplicationInfo().sourceDir);
config.setString("bundle_assets_dst_path", dst_path);
config.setString("bundle_assets_dst_path_subdir", dst_path_subdir);