1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-25 04:02:42 +01:00

overlay: set minimum update interval to 1ms

This commit is contained in:
illusion0001 2020-03-08 21:57:17 +11:00 committed by Ivan
parent 5692c3de04
commit 814c73407d

View File

@ -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<detail_level> 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<screen_quadrant> position{ this, "Position", screen_quadrant::top_left, true };
cfg::string font{ this, "Font", "n023055ms.ttf", true };