diff --git a/rpcs3/Emu/system_config.h b/rpcs3/Emu/system_config.h index 89bbca32bb..4fc940ce9e 100644 --- a/rpcs3/Emu/system_config.h +++ b/rpcs3/Emu/system_config.h @@ -42,8 +42,8 @@ struct cfg_root : cfg::node cfg::_bool spu_loop_detection{ this, "SPU loop detection", true, true }; // Try to detect wait loops and trigger thread yield cfg::_int<0, 6> max_spurs_threads{ this, "Max SPURS Threads", 6 }; // HACK. If less then 6, max number of running SPURS threads in each thread group. cfg::_enum spu_block_size{ this, "SPU Block Size", spu_block_size_type::safe }; - cfg::_bool spu_accurate_getllar{ this, "Accurate GETLLAR", false }; - cfg::_bool spu_accurate_putlluc{ this, "Accurate PUTLLUC", false }; + cfg::_bool spu_accurate_getllar{ this, "Accurate GETLLAR", false, true }; + cfg::_bool spu_accurate_putlluc{ this, "Accurate PUTLLUC", false, true }; cfg::_bool spu_accurate_dma{ this, "Accurate SPU DMA", false }; cfg::_bool rsx_accurate_res_access{this, "Accurate RSX reservation access", false, true}; cfg::_bool spu_verification{ this, "SPU Verification", true }; // Should be enabled