From cf630f05923d249400b39fbecaa0c2cbae8ec212 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Wed, 28 Oct 2020 17:32:24 +1000 Subject: [PATCH] Qt: Fix incorrect help text for texture filtering --- src/duckstation-qt/enhancementsettingswidget.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/duckstation-qt/enhancementsettingswidget.cpp b/src/duckstation-qt/enhancementsettingswidget.cpp index 0d226906a..185765be7 100644 --- a/src/duckstation-qt/enhancementsettingswidget.cpp +++ b/src/duckstation-qt/enhancementsettingswidget.cpp @@ -68,8 +68,9 @@ EnhancementSettingsWidget::EnhancementSettingsWidget(QtHostInterface* host_inter m_ui.force43For24Bit, tr("Force 4:3 For 24-bit Display"), tr("Unchecked"), tr("Switches back to 4:3 display aspect ratio when displaying 24-bit content, usually FMVs.")); dialog->registerWidgetHelp( - m_ui.textureFiltering, tr("Texture Filtering"), tr("Unchecked"), - tr("Smooths out the blockyness of magnified textures on 3D object by using bilinear filtering.
Will have a " + m_ui.textureFiltering, tr("Texture Filtering"), + qApp->translate("GPUTextureFilter", Settings::GetTextureFilterDisplayName(GPUTextureFilter::Nearest)), + tr("Smooths out the blockyness of magnified textures on 3D object by using filtering.
Will have a " "greater effect on higher resolution scales. Only applies to the hardware renderers.")); dialog->registerWidgetHelp( m_ui.widescreenHack, tr("Widescreen Hack"), tr("Unchecked"),