summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2026-07-05 10:20:15 +0200
committerJosJuice <josjuice@gmail.com>2026-07-05 10:20:15 +0200
commitbe1df92153d94b276fee69182d4774e7bfc1b3f1 (patch)
tree35c4490b20ac22efb73427058a9e93d23f5a185b /Source
parentdb77b117d9480f528b435c29f96c2bbc264a2610 (diff)
Rename "Show Internal Resolution" to "Show XFB Resolution"
To make it extra clear that this is measuring the XFB, not the EFB.
Diffstat (limited to 'Source')
-rw-r--r--Source/Android/app/src/main/res/values/strings.xml2
-rw-r--r--Source/Core/DolphinQt/Settings/OnScreenDisplayPane.cpp6
2 files changed, 4 insertions, 4 deletions
diff --git a/Source/Android/app/src/main/res/values/strings.xml b/Source/Android/app/src/main/res/values/strings.xml
index 71179b33b1..07c5e7ebc0 100644
--- a/Source/Android/app/src/main/res/values/strings.xml
+++ b/Source/Android/app/src/main/res/values/strings.xml
@@ -375,7 +375,7 @@
<string name="wireframe">Enable Wireframe</string>
<string name="show_stats">Show Statistics</string>
<string name="show_proj_stats">Show Projection Statistics</string>
- <string name="show_internal_resolution">Show Internal Resolution</string>
+ <string name="show_internal_resolution">Show XFB Resolution</string>
<string name="texture_format">Texture Format Overlay</string>
<string name="validation_layer">Enable API Validation Layers</string>
<string name="dump_efb">Dump EFB Target</string>
diff --git a/Source/Core/DolphinQt/Settings/OnScreenDisplayPane.cpp b/Source/Core/DolphinQt/Settings/OnScreenDisplayPane.cpp
index cc8248f15b..2c8b55b899 100644
--- a/Source/Core/DolphinQt/Settings/OnScreenDisplayPane.cpp
+++ b/Source/Core/DolphinQt/Settings/OnScreenDisplayPane.cpp
@@ -102,7 +102,7 @@ void OnScreenDisplayPane::CreateLayout()
m_show_proj_statistics =
new ConfigBool(tr("Show Projection Statistics"), Config::GFX_OVERLAY_PROJ_STATS);
m_show_internal_resolution =
- new ConfigBool(tr("Show Internal Resolution"), Config::GFX_SHOW_INTERNAL_RESOLUTION);
+ new ConfigBool(tr("Show XFB Resolution"), Config::GFX_SHOW_INTERNAL_RESOLUTION);
debug_layout->addWidget(m_show_statistics, 0, 0);
debug_layout->addWidget(m_show_proj_statistics, 0, 1);
@@ -221,8 +221,8 @@ void OnScreenDisplayPane::AddDescriptions()
QT_TR_NOOP("Shows various projection statistics.<br><br><dolphin_emphasis>If unsure, "
"leave this unchecked.</dolphin_emphasis>");
static const char TR_SHOW_INTERNAL_RESOLUTION_DESCRIPTION[] =
- QT_TR_NOOP("Shows the internal resolution in pixels, as a product of "
- "width and height. <br><br><dolphin_emphasis>If unsure, leave this "
+ QT_TR_NOOP("Shows the size of the emulated external frame buffer (XFB) in pixels, as a "
+ "product of width and height.<br><br><dolphin_emphasis>If unsure, leave this "
"unchecked.</dolphin_emphasis>");
m_enable_osd->SetDescription(tr(TR_ENABLE_OSD_DESCRIPTION));