Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Android] Fix preferences from crashing. OSD controls was supposed to…
… be boolean.
  • Loading branch information
Sonicadvance1 committed Aug 21, 2013
1 parent 272dcb8 commit fbd0fba
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -38,7 +38,7 @@ public static void LoadDolphinConfigToPrefs(Context ctx)
editor.putBoolean("dualCorePref", getConfig("Dolphin.ini", "Core", "CPUThread", "False").equals("True"));

editor.putString("gpuPref", getConfig("Dolphin.ini", "Core", "GFXBackend ", "Software Renderer"));
editor.putString("drawOnscreenControls", getConfig("Dolphin.ini", "Android", "ScreenControls", "True"));
editor.putBoolean("drawOnscreenControls", getConfig("Dolphin.ini", "Android", "ScreenControls", "True").equals("True"));

editor.putString("internalResolution", getConfig("gfx_opengl.ini", "Settings", "EFBScale", "2") );
editor.putString("anisotropicFiltering", getConfig("gfx_opengl.ini", "Enhancements", "MaxAnisotropy", "0"));
Expand Down

0 comments on commit fbd0fba

Please sign in to comment.