Qt: Fix incorrect help text for texture filtering
This commit is contained in:
parent
9bfa27d550
commit
cf630f0592
|
@ -68,8 +68,9 @@ EnhancementSettingsWidget::EnhancementSettingsWidget(QtHostInterface* host_inter
|
||||||
m_ui.force43For24Bit, tr("Force 4:3 For 24-bit Display"), tr("Unchecked"),
|
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."));
|
tr("Switches back to 4:3 display aspect ratio when displaying 24-bit content, usually FMVs."));
|
||||||
dialog->registerWidgetHelp(
|
dialog->registerWidgetHelp(
|
||||||
m_ui.textureFiltering, tr("Texture Filtering"), tr("Unchecked"),
|
m_ui.textureFiltering, tr("Texture Filtering"),
|
||||||
tr("Smooths out the blockyness of magnified textures on 3D object by using bilinear filtering. <br>Will have a "
|
qApp->translate("GPUTextureFilter", Settings::GetTextureFilterDisplayName(GPUTextureFilter::Nearest)),
|
||||||
|
tr("Smooths out the blockyness of magnified textures on 3D object by using filtering. <br>Will have a "
|
||||||
"greater effect on higher resolution scales. Only applies to the hardware renderers."));
|
"greater effect on higher resolution scales. Only applies to the hardware renderers."));
|
||||||
dialog->registerWidgetHelp(
|
dialog->registerWidgetHelp(
|
||||||
m_ui.widescreenHack, tr("Widescreen Hack"), tr("Unchecked"),
|
m_ui.widescreenHack, tr("Widescreen Hack"), tr("Unchecked"),
|
||||||
|
|
Loading…
Reference in New Issue