mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 11:35:54 +00:00
Enables EFB copies by default on Android.
I was mistaken and only changed one line previously which didn't enable them by default. This changes the default configuration to enable EFB copies and EFB to texture.
This commit is contained in:
parent
e0393be347
commit
5dbfadaeaa
1 changed files with 2 additions and 2 deletions
|
@ -53,8 +53,8 @@ public final class UserPreferences
|
|||
editor.putBoolean("skipEFBAccess", getConfig("gfx_opengl.ini", "Hacks", "EFBAccessEnable", "False").equals("True"));
|
||||
editor.putBoolean("ignoreFormatChanges", getConfig("gfx_opengl.ini", "Hacks", "EFBEmulateFormatChanges", "False").equals("False"));
|
||||
|
||||
String efbCopyOn = getConfig("gfx_opengl.ini", "Hacks", "EFBCopyEnable", "False");
|
||||
String efbToTexture = getConfig("gfx_opengl.ini", "Hacks", "EFBToTextureEnable", "False");
|
||||
String efbCopyOn = getConfig("gfx_opengl.ini", "Hacks", "EFBCopyEnable", "True");
|
||||
String efbToTexture = getConfig("gfx_opengl.ini", "Hacks", "EFBToTextureEnable", "True");
|
||||
String efbCopyCache = getConfig("gfx_opengl.ini", "Hacks", "EFBCopyCacheEnable", "False");
|
||||
|
||||
if (efbCopyOn.equals("False"))
|
||||
|
|
Loading…
Add table
Reference in a new issue