diff --git a/pcsx2-qt/Settings/AdvancedSystemSettingsWidget.cpp b/pcsx2-qt/Settings/AdvancedSystemSettingsWidget.cpp index e0828aadc0..59f93bcfba 100644 --- a/pcsx2-qt/Settings/AdvancedSystemSettingsWidget.cpp +++ b/pcsx2-qt/Settings/AdvancedSystemSettingsWidget.cpp @@ -60,6 +60,12 @@ AdvancedSystemSettingsWidget::AdvancedSystemSettingsWidget(SettingsDialog* dialo dialog->registerWidgetHelp(m_ui.eeINTCSpinDetection, tr("INTC Spin Detection"), tr("Checked"), tr("Huge speedup for some games, with almost no compatibility side effects.")); + dialog->registerWidgetHelp(m_ui.vu0Recompiler, tr("Enable VU0 Recompiler"), tr("Checked"), + tr("Enables VU0 Recompiler.")); + + dialog->registerWidgetHelp(m_ui.vu1Recompiler, tr("Enable VU1 Recompiler"), tr("Checked"), + tr("Enables VU1 Recompiler.")); + dialog->registerWidgetHelp(m_ui.vuFlagHack, tr("mVU Flag Hack"), tr("Checked"), tr("Good speedup and high compatibility, may cause graphical errors.")); @@ -68,6 +74,9 @@ AdvancedSystemSettingsWidget::AdvancedSystemSettingsWidget(SettingsDialog* dialo dialog->registerWidgetHelp(m_ui.gameFixes, tr("Enable Game Fixes"), tr("Checked"), tr("Automatically loads and applies gamefixes to known problematic games on game start.")); + + dialog->registerWidgetHelp(m_ui.patches, tr("Enable Compatibility Patches"), tr("Checked"), + tr("Automatically loads and applies compatibility patches to known problematic games.")); } AdvancedSystemSettingsWidget::~AdvancedSystemSettingsWidget() = default; diff --git a/pcsx2-qt/Settings/EmulationSettingsWidget.cpp b/pcsx2-qt/Settings/EmulationSettingsWidget.cpp index cca49db1d1..218bb8ad26 100644 --- a/pcsx2-qt/Settings/EmulationSettingsWidget.cpp +++ b/pcsx2-qt/Settings/EmulationSettingsWidget.cpp @@ -60,7 +60,10 @@ EmulationSettingsWidget::EmulationSettingsWidget(SettingsDialog* dialog, QWidget tr("Sets the fast forward speed. This speed will be used when the fast forward hotkey is pressed/toggled.")); dialog->registerWidgetHelp(m_ui.slowMotionSpeed, tr("Slow Motion Speed"), tr("User Preference"), - tr("Sets the slow motion speed. This speed will be used when the slow motion hotkey is pressed/toggled.")); + tr("Sets the slow motion speed. This speed will be used when the slow motion hotkey is pressed/toggled.")); + + dialog->registerWidgetHelp(m_ui.speedLimiter, tr("Speed Limiter"), tr("checked"), + tr("Limits the emulation to the appropriate framerate for the currently running game.")); dialog->registerWidgetHelp(m_ui.syncToHostRefreshRate, tr("Sync To Host Refresh Rate"), tr("Unchecked"), tr("Adjusts the emulation speed so the console's refresh rate matches the host's refresh rate when both VSync and "