diff options
| author | Lioncash <mathew1800@gmail.com> | 2013-09-09 22:38:09 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2013-09-09 22:38:09 -0400 |
| commit | a3ef35a1bf00b5a0dedc41e7670ba58d48cd8291 (patch) | |
| tree | f104e6d139c91363c34edcb589fadd846d796cb8 /Source/Android/src | |
| parent | 70130aeac35b4a8ee65fe3d0aa2d7a535e9bcde2 (diff) | |
[Android] Fix a bug where the video backend would not load correctly.
Diffstat (limited to 'Source/Android/src')
| -rw-r--r-- | Source/Android/src/org/dolphinemu/dolphinemu/settings/UserPreferences.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Android/src/org/dolphinemu/dolphinemu/settings/UserPreferences.java b/Source/Android/src/org/dolphinemu/dolphinemu/settings/UserPreferences.java index 08d6ee2021..b29a91a63c 100644 --- a/Source/Android/src/org/dolphinemu/dolphinemu/settings/UserPreferences.java +++ b/Source/Android/src/org/dolphinemu/dolphinemu/settings/UserPreferences.java @@ -37,7 +37,7 @@ public final class UserPreferences 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")); |
