disable forced logging on android
This commit is contained in:
parent
8fd0aedc56
commit
0c2f5093b2
2
dirs.c
2
dirs.c
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue