diff --git a/rpcs3/Emu/System.h b/rpcs3/Emu/System.h index 1e5c692034..28b88c7117 100644 --- a/rpcs3/Emu/System.h +++ b/rpcs3/Emu/System.h @@ -325,7 +325,7 @@ struct cfg_root : cfg::node cfg::_bool batch_instanced_geometry{this, "Batch Instanced Geometry", false}; //Avoid re-uploading geometry if the same draw command is repeated cfg::_int<1, 16> vertex_upload_threads{ this, "Vertex Upload Threads", 1 }; //Max number of threads to use for parallel vertex processing - cfg::_int<32, 65536> mt_vertex_upload_threshold{ this, "Multithreaded Vertex Upload Threshold", 4096}; //Minimum vertex count to parallelize + cfg::_int<32, 65536> mt_vertex_upload_threshold{ this, "Multithreaded Vertex Upload Threshold", 512}; //Minimum vertex count to parallelize cfg::_bool frame_skip_enabled{this, "Enable Frame Skip"}; cfg::_int<1, 8> consequtive_frames_to_draw{this, "Consecutive Frames Drawn", 1};