Add "SPU Verification" option

Should be always enabled
This commit is contained in:
Nekotekina 2018-06-04 02:13:53 +03:00
parent 12eee6a19e
commit 5d4c5ecc1c
3 changed files with 25 additions and 12 deletions

View file

@ -322,6 +322,7 @@ struct cfg_root : cfg::node
cfg::_bool spu_shared_runtime{this, "SPU Shared Runtime", true}; // Share compiled SPU functions between all threads
cfg::_enum<spu_block_size_type> spu_block_size{this, "SPU Block Size"};
cfg::_bool spu_accurate_getllar{this, "Accurate GETLLAR", false};
cfg::_bool spu_verification{this, "SPU Verification", true}; // Should be enabled
cfg::_enum<lib_loading_type> lib_loading{this, "Lib Loader", lib_loading_type::liblv2only};
cfg::_bool hook_functions{this, "Hook static functions"};