Rename "Show Internal Resolution" to "Show XFB Resolution"

To make it extra clear that this is measuring the XFB, not the EFB.
This commit is contained in:
JosJuice
2026-07-05 10:20:15 +02:00
parent db77b117d9
commit be1df92153
2 changed files with 4 additions and 4 deletions
@@ -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>
@@ -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));