From 504b9e70518b23782d3e1fcde95845c26323478c Mon Sep 17 00:00:00 2001 From: lightningterror <18107717+lightningterror@users.noreply.github.com> Date: Tue, 7 Jun 2022 02:28:12 +0200 Subject: [PATCH] Qt: Fix Texture Offsets tooltip. --- pcsx2-qt/Settings/GraphicsSettingsWidget.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsx2-qt/Settings/GraphicsSettingsWidget.cpp b/pcsx2-qt/Settings/GraphicsSettingsWidget.cpp index 5cf2623a28..f5b945f3f2 100644 --- a/pcsx2-qt/Settings/GraphicsSettingsWidget.cpp +++ b/pcsx2-qt/Settings/GraphicsSettingsWidget.cpp @@ -391,10 +391,10 @@ GraphicsSettingsWidget::GraphicsSettingsWidget(SettingsDialog* dialog, QWidget* tr("Corrects the sampling of 2D sprite textures when upscaling. " "Fixes lines in sprites of games like Ar tonelico when upscaling. Half option is for flat sprites, Full is for all sprites.")); - dialog->registerWidgetHelp(m_ui.offsetX, tr("Texture Offsets X"), tr("0"), + dialog->registerWidgetHelp(m_ui.textureOffsetX, tr("Texture Offsets X"), tr("0"), tr("Offset for the ST/UV texture coordinates. Fixes some odd texture issues and might fix some post processing alignment too.")); - dialog->registerWidgetHelp(m_ui.offsetY, tr("Texture Offsets Y"), tr("0"), + dialog->registerWidgetHelp(m_ui.textureOffsetY, tr("Texture Offsets Y"), tr("0"), tr("Offset for the ST/UV texture coordinates. Fixes some odd texture issues and might fix some post processing alignment too.")); dialog->registerWidgetHelp(m_ui.alignSprite, tr("Align Sprite"), tr("Unchecked"),