diff options
author | D G Turner | 2012-12-24 16:45:49 +0000 |
---|---|---|
committer | D G Turner | 2012-12-24 16:45:49 +0000 |
commit | 0e5bfb66f03551f998405ce6674f3e6eab4a0150 (patch) | |
tree | 6b81d27934a4c757c5fbd27be134d9898b57ed48 /backends | |
parent | 3de93033943fa28fbc932cafd31818d08ee531eb (diff) | |
download | scummvm-rg350-0e5bfb66f03551f998405ce6674f3e6eab4a0150.tar.gz scummvm-rg350-0e5bfb66f03551f998405ce6674f3e6eab4a0150.tar.bz2 scummvm-rg350-0e5bfb66f03551f998405ce6674f3e6eab4a0150.zip |
ANDROID: Remove parameter forcing use of Modern theme.
This parameter overrides any user choice in the GUI or config file,
which is not good UX design (and is making it hard to debug loading
issues associated with theme files).
If we want to set this to default to Modern, we should do this in
a different way i.e. do this by ConfMan.loadDefaultConfigFile()
This is probably related to the Android issue with the backend init
running before main() is called, rather than after...
Diffstat (limited to 'backends')
-rw-r--r-- | backends/platform/android/org/scummvm/scummvm/ScummVMActivity.java | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/backends/platform/android/org/scummvm/scummvm/ScummVMActivity.java b/backends/platform/android/org/scummvm/scummvm/ScummVMActivity.java index 34c6df3a3a..829a948435 100644 --- a/backends/platform/android/org/scummvm/scummvm/ScummVMActivity.java +++ b/backends/platform/android/org/scummvm/scummvm/ScummVMActivity.java @@ -160,7 +160,6 @@ public class ScummVMActivity extends Activity { "ScummVM", "--config=" + getFileStreamPath("scummvmrc").getPath(), "--path=" + Environment.getExternalStorageDirectory().getPath(), - "--gui-theme=scummmodern", "--savepath=" + savePath }); |