Qt: Fix default value for texture replacements OSD

This commit is contained in:
KamFretoZ 2025-12-03 06:17:31 +07:00 committed by lightningterror
parent 6c07160503
commit e07f02d9bc
2 changed files with 2 additions and 2 deletions

View File

@ -770,7 +770,7 @@ GraphicsSettingsWidget::GraphicsSettingsWidget(SettingsWindow* settings_dialog,
dialog()->registerWidgetHelp(m_osd.showInputRec, tr("Show Input Recording Status"), tr("Checked"), dialog()->registerWidgetHelp(m_osd.showInputRec, tr("Show Input Recording Status"), tr("Checked"),
tr("Shows the status of the currently active input recording in the top-right corner of the display..")); tr("Shows the status of the currently active input recording in the top-right corner of the display.."));
dialog()->registerWidgetHelp(m_osd.showTextureReplacements, tr("Show Texture Replacement Status"), tr("Checked"), dialog()->registerWidgetHelp(m_osd.showTextureReplacements, tr("Show Texture Replacement Status"), tr("Unchecked"),
tr("Shows the status of the number of dumped and loaded texture replacements in the top-right corner of the display.")); tr("Shows the status of the number of dumped and loaded texture replacements in the top-right corner of the display."));
dialog()->registerWidgetHelp(m_osd.warnAboutUnsafeSettings, tr("Warn About Unsafe Settings"), tr("Checked"), dialog()->registerWidgetHelp(m_osd.warnAboutUnsafeSettings, tr("Warn About Unsafe Settings"), tr("Checked"),

View File

@ -741,7 +741,7 @@ Pcsx2Config::GSOptions::GSOptions()
OsdShowInputs = false; OsdShowInputs = false;
OsdShowVideoCapture = true; OsdShowVideoCapture = true;
OsdShowInputRec = true; OsdShowInputRec = true;
OsdShowTextureReplacements = true; OsdShowTextureReplacements = false;
HWDownloadMode = GSHardwareDownloadMode::Enabled; HWDownloadMode = GSHardwareDownloadMode::Enabled;
HWSpinGPUForReadbacks = false; HWSpinGPUForReadbacks = false;