Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Android] Fix a bug where the video backend would not load correctly.
  • Loading branch information
lioncash committed Sep 10, 2013
1 parent 70130ae commit a3ef35a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -37,7 +37,7 @@ public static void LoadDolphinConfigToPrefs(Context ctx)
editor.putString("cpuCorePref", getConfig("Dolphin.ini", "Core", "CPUCore", "3"));
editor.putBoolean("dualCorePref", getConfig("Dolphin.ini", "Core", "CPUThread", "False").equals("True"));

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

Expand Down

0 comments on commit a3ef35a

Please sign in to comment.