From bf0cd5a6cdc187159133f4bb79278b82e8e5024f Mon Sep 17 00:00:00 2001 From: JordanTheToaster Date: Thu, 28 Jul 2022 22:20:31 +0100 Subject: [PATCH] Qt: Recommended text fixes Fixes some missing or incorrect recommended boxes. --- pcsx2-qt/Settings/BIOSSettingsWidget.cpp | 2 +- pcsx2-qt/Settings/GraphicsSettingsWidget.cpp | 2 +- pcsx2-qt/Settings/SystemSettingsWidget.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pcsx2-qt/Settings/BIOSSettingsWidget.cpp b/pcsx2-qt/Settings/BIOSSettingsWidget.cpp index 6dc7467c98..7514ce5087 100644 --- a/pcsx2-qt/Settings/BIOSSettingsWidget.cpp +++ b/pcsx2-qt/Settings/BIOSSettingsWidget.cpp @@ -43,7 +43,7 @@ BIOSSettingsWidget::BIOSSettingsWidget(SettingsDialog* dialog, QWidget* parent) dialog->registerWidgetHelp(m_ui.patchRegion, tr("Patch Region"), tr("Unchecked"), tr("Patches the BIOS region byte in ROM. Not recommended unless you really know what you're doing.")); - dialog->registerWidgetHelp(m_ui.fastBoot, tr("Fast Boot"), tr("Unchecked"), + dialog->registerWidgetHelp(m_ui.fastBoot, tr("Fast Boot"), tr("Checked"), tr("Patches the BIOS to skip the console's boot animation.")); refreshList(); diff --git a/pcsx2-qt/Settings/GraphicsSettingsWidget.cpp b/pcsx2-qt/Settings/GraphicsSettingsWidget.cpp index a0a38e1c9e..76f9619197 100644 --- a/pcsx2-qt/Settings/GraphicsSettingsWidget.cpp +++ b/pcsx2-qt/Settings/GraphicsSettingsWidget.cpp @@ -347,7 +347,7 @@ GraphicsSettingsWidget::GraphicsSettingsWidget(SettingsDialog* dialog, QWidget* "The higher the setting, the more blending is emulated in the shader accurately, and the higher the speed penalty will be. " "Do note that Direct3D's blending is reduced in capability compared to OpenGL/Vulkan")); - dialog->registerWidgetHelp(m_ui.texturePreloading, tr("Texture Preloading"), tr(""), + dialog->registerWidgetHelp(m_ui.texturePreloading, tr("Texture Preloading"), tr("Full (Hash Cache)"), tr("Uploads entire textures at once instead of small pieces, avoiding redundant uploads when possible. " "Improves performance in most games, but can make a small selection slower.")); diff --git a/pcsx2-qt/Settings/SystemSettingsWidget.cpp b/pcsx2-qt/Settings/SystemSettingsWidget.cpp index d4ed62f5b4..5fa97237c3 100644 --- a/pcsx2-qt/Settings/SystemSettingsWidget.cpp +++ b/pcsx2-qt/Settings/SystemSettingsWidget.cpp @@ -80,7 +80,7 @@ SystemSettingsWidget::SystemSettingsWidget(SettingsDialog* dialog, QWidget* pare tr("Higher values may increase internal framerate in games, but will increase CPU requirements substantially. " "Lower values will reduce the CPU load allowing lightweight games to run full speed on weaker CPUs.")); - dialog->registerWidgetHelp(m_ui.eeCycleSkipping, tr("Cycle Skip"), tr("Normal Speed"), + dialog->registerWidgetHelp(m_ui.eeCycleSkipping, tr("Cycle Skip"), tr("None"), tr("Makes the emulated Emotion Engine skip cycles. " "Helps a small subset of games like SOTC. Most of the time it's harmful to performance."));