Merge pull request #13140 from dreamsyntax/skip-efb-default-flip

GraphicsSettings: EFBAccessEnable=false by default
This commit is contained in:
JMC47 2024-10-28 18:58:37 -04:00 committed by GitHub
commit bab34ca060
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 3 additions and 37 deletions

View File

@ -9,8 +9,5 @@
[ActionReplay]
# Add action replay cheats here.
[Video_Settings]
[Video_Hacks]
EFBAccessEnable = False
ImmediateXFBEnable = False

View File

@ -1,14 +0,0 @@
# GXBE69, GXBP69 - SSX3
[Core]
# Values set here will override the main Dolphin settings.
[OnFrame]
# Add memory patches to be applied every frame here.
[ActionReplay]
# Add action replay cheats here.
[Video_Hacks]
EFBAccessEnable = False

View File

@ -16,6 +16,3 @@ $Disable blur
[Video_Settings]
SafeTextureCacheColorSamples = 0
[Video_Hacks]
EFBAccessEnable = False

View File

@ -1,14 +0,0 @@
# SNCE8P, SNCJ8P, SNCP8P - SONIC COLOURS
[Core]
# Values set here will override the main Dolphin settings.
[OnFrame]
# Add memory patches to be applied every frame here.
[ActionReplay]
# Add action replay cheats here.
[Video_Hacks]
EFBAccessEnable = False

View File

@ -789,7 +789,7 @@ enum class BooleanSetting(
Settings.FILE_GFX,
Settings.SECTION_GFX_HACKS,
"EFBAccessEnable",
true
false
),
GFX_HACK_EFB_DEFER_INVALIDATION(
Settings.FILE_GFX,

View File

@ -177,7 +177,7 @@ const Info<int> GFX_STEREO_DEPTH_PERCENTAGE{{System::GFX, "Stereoscopy", "Stereo
// Graphics.Hacks
const Info<bool> GFX_HACK_EFB_ACCESS_ENABLE{{System::GFX, "Hacks", "EFBAccessEnable"}, true};
const Info<bool> GFX_HACK_EFB_ACCESS_ENABLE{{System::GFX, "Hacks", "EFBAccessEnable"}, false};
const Info<bool> GFX_HACK_EFB_DEFER_INVALIDATION{
{System::GFX, "Hacks", "EFBAccessDeferInvalidation"}, false};
const Info<int> GFX_HACK_EFB_ACCESS_TILE_SIZE{{System::GFX, "Hacks", "EFBAccessTileSize"}, 64};

View File

@ -223,7 +223,7 @@ void HacksWidget::AddDescriptions()
"Ignores any requests from the CPU to read from or write to the EFB. "
"<br><br>Improves performance in some games, but will disable all EFB-based "
"graphical effects or gameplay-related features.<br><br><dolphin_emphasis>If unsure, "
"leave this unchecked.</dolphin_emphasis>");
"leave this checked.</dolphin_emphasis>");
static const char TR_IGNORE_FORMAT_CHANGE_DESCRIPTION[] = QT_TR_NOOP(
"Ignores any changes to the EFB format.<br><br>Improves performance in many games "
"without "