From ac5907307190874c068223fbb71f82aac6b173dc Mon Sep 17 00:00:00 2001 From: Megamouse Date: Sat, 22 May 2021 21:36:45 +0200 Subject: [PATCH] perf_overlay: update interval config update --- rpcs3/Emu/system_config.h | 2 +- rpcs3/rpcs3qt/settings_dialog.ui | 4 ++-- rpcs3/rpcs3qt/tooltips.h | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/rpcs3/Emu/system_config.h b/rpcs3/Emu/system_config.h index 5195e443e3..037b281eca 100644 --- a/rpcs3/Emu/system_config.h +++ b/rpcs3/Emu/system_config.h @@ -190,7 +190,7 @@ struct cfg_root : cfg::node cfg::uint<2, 6000> framerate_datapoint_count{ this, "Framerate datapoints", 50, true }; cfg::uint<2, 6000> frametime_datapoint_count{ this, "Frametime datapoints", 170, true }; cfg::_enum level{ this, "Detail level", detail_level::medium, true }; - cfg::uint<1, 5000> update_interval{ this, "Metrics update interval (ms)", 350, true }; + cfg::uint<1, 1000> update_interval{ this, "Metrics update interval (ms)", 350, true }; cfg::uint<4, 36> font_size{ this, "Font size (px)", 10, true }; cfg::_enum position{ this, "Position", screen_quadrant::top_left, true }; cfg::string font{ this, "Font", "n023055ms.ttf", true }; diff --git a/rpcs3/rpcs3qt/settings_dialog.ui b/rpcs3/rpcs3qt/settings_dialog.ui index 0326a6aa9f..e7dee045db 100644 --- a/rpcs3/rpcs3qt/settings_dialog.ui +++ b/rpcs3/rpcs3qt/settings_dialog.ui @@ -9,7 +9,7 @@ 0 0 - 753 + 785 730 @@ -39,7 +39,7 @@ - 9 + 0 diff --git a/rpcs3/rpcs3qt/tooltips.h b/rpcs3/rpcs3qt/tooltips.h index 1a6fb5a254..51a78b7178 100644 --- a/rpcs3/rpcs3qt/tooltips.h +++ b/rpcs3/rpcs3qt/tooltips.h @@ -126,7 +126,7 @@ public: const QString perf_overlay_frametime_datapoints = tr("Sets the amount of datapoints used in the frametime graph."); const QString perf_overlay_position = tr("Sets the on-screen position (quadrant) of the performance overlay."); const QString perf_overlay_detail_level = tr("Controls the amount of information displayed on the performance overlay."); - const QString perf_overlay_update_interval = tr("Sets the time interval in which the performance overlay is being updated (measured in milliseconds)."); + const QString perf_overlay_update_interval = tr("Sets the time interval in which the performance overlay is being updated (measured in milliseconds).\nSetting this to 16 milliseconds will refresh the performance overlay at roughly 60Hz.\nThe performance overlay refresh rate does not affect the frame graph statistics and can only be as fast as the current game allows."); const QString perf_overlay_font_size = tr("Sets the font size of the performance overlay (measured in pixels)."); const QString perf_overlay_opacity = tr("Sets the opacity of the performance overlay (measured in %)."); const QString perf_overlay_margin_x = tr("Sets the horizontal distance to the screen border relative to the screen quadrant (measured in pixels).");