Skip to content

Commit e07f02d

Browse files
kamfretozlightningterror
authored andcommitted
Qt: Fix default value for texture replacements OSD
1 parent 6c07160 commit e07f02d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pcsx2-qt/Settings/GraphicsSettingsWidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -770,7 +770,7 @@ GraphicsSettingsWidget::GraphicsSettingsWidget(SettingsWindow* settings_dialog,
770770
dialog()->registerWidgetHelp(m_osd.showInputRec, tr("Show Input Recording Status"), tr("Checked"),
771771
tr("Shows the status of the currently active input recording in the top-right corner of the display.."));
772772

773-
dialog()->registerWidgetHelp(m_osd.showTextureReplacements, tr("Show Texture Replacement Status"), tr("Checked"),
773+
dialog()->registerWidgetHelp(m_osd.showTextureReplacements, tr("Show Texture Replacement Status"), tr("Unchecked"),
774774
tr("Shows the status of the number of dumped and loaded texture replacements in the top-right corner of the display."));
775775

776776
dialog()->registerWidgetHelp(m_osd.warnAboutUnsafeSettings, tr("Warn About Unsafe Settings"), tr("Checked"),

pcsx2/Pcsx2Config.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -741,7 +741,7 @@ Pcsx2Config::GSOptions::GSOptions()
741741
OsdShowInputs = false;
742742
OsdShowVideoCapture = true;
743743
OsdShowInputRec = true;
744-
OsdShowTextureReplacements = true;
744+
OsdShowTextureReplacements = false;
745745

746746
HWDownloadMode = GSHardwareDownloadMode::Enabled;
747747
HWSpinGPUForReadbacks = false;

0 commit comments

Comments
 (0)