From 086b0d390a41af310ff61aad3eef0dfe99fe169f Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Thu, 22 Sep 2022 15:05:16 +0200 Subject: [PATCH] Add usage description for Show CPU Usage Unlike other display options, this one was missing a description. This clarifies the option's purpose and the fact that it displays the host's CPU usage, not the emulated system's CPU usage. --- src/duckstation-qt/displaysettingswidget.cpp | 3 +++ src/frontend-common/fullscreen_ui.cpp | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/duckstation-qt/displaysettingswidget.cpp b/src/duckstation-qt/displaysettingswidget.cpp index 1e4479f9d0..2636015e14 100644 --- a/src/duckstation-qt/displaysettingswidget.cpp +++ b/src/duckstation-qt/displaysettingswidget.cpp @@ -146,6 +146,9 @@ DisplaySettingsWidget::DisplaySettingsWidget(SettingsDialog* dialog, QWidget* pa tr("Shows the current emulation speed of the system in the top-right corner of the display as a percentage.")); dialog->registerWidgetHelp(m_ui.showResolution, tr("Show Resolution"), tr("Unchecked"), tr("Shows the resolution of the game in the top-right corner of the display.")); + dialog->registerWidgetHelp( + m_ui.showCPU, tr("Show CPU Usage"), tr("Unchecked"), + tr("Shows the host's CPU usage based on threads in the top-right corner of the display. This does not display the emulated system CPU's usage. If a value close to 100% is being displayed, this means your host's CPU is likely the bottleneck. In this case, you should reduce enhancement-related settings such as overclocking.")); dialog->registerWidgetHelp( m_ui.showInput, tr("Show Controller Input"), tr("Unchecked"), tr("Shows the current controller state of the system in the bottom-left corner of the display.")); diff --git a/src/frontend-common/fullscreen_ui.cpp b/src/frontend-common/fullscreen_ui.cpp index 1d871b9047..17b7bae222 100644 --- a/src/frontend-common/fullscreen_ui.cpp +++ b/src/frontend-common/fullscreen_ui.cpp @@ -2364,7 +2364,7 @@ void FullscreenUI::DrawInterfaceSettingsPage() "corner of the display.", "Display", "ShowFPS", false); DrawToggleSetting(bsi, ICON_FA_BATTERY_HALF " Show CPU Usage", - "Shows the CPU usage based on threads in the top-right corner of the display.", "Display", + "Shows the host's CPU usage based on threads in the top-right corner of the display.", "Display", "ShowCPU", false); DrawToggleSetting(bsi, ICON_FA_SPINNER " Show GPU Usage", "Shows the host's GPU usage in the top-right corner of the display.", "Display", "ShowGPU", false);