From 814c73407de41213b31ad4552ed2fba23f54b133 Mon Sep 17 00:00:00 2001 From: illusion0001 <37698908+illusion0001@users.noreply.github.com> Date: Sun, 8 Mar 2020 21:57:17 +1100 Subject: [PATCH] overlay: set minimum update interval to 1ms --- rpcs3/Emu/system_config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/system_config.h b/rpcs3/Emu/system_config.h index c732c4928..32c7bedec 100644 --- a/rpcs3/Emu/system_config.h +++ b/rpcs3/Emu/system_config.h @@ -153,7 +153,7 @@ struct cfg_root : cfg::node cfg::_bool framerate_graph_enabled{ this, "Enable Framerate Graph", false, true }; cfg::_bool frametime_graph_enabled{ this, "Enable Frametime Graph", false, true }; cfg::_enum level{ this, "Detail level", detail_level::medium, true }; - cfg::_int<30, 5000> update_interval{ this, "Metrics update interval (ms)", 350, true }; + cfg::_int<1, 5000> update_interval{ this, "Metrics update interval (ms)", 350, true }; cfg::_int<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 };