diff options
author | merry <git@mary.rs> | 2022-12-06 21:20:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-06 21:20:20 +0100 |
commit | e1f5f4bdea084d499a20c6c29902e296224fc5ed (patch) | |
tree | f725b18f788f13f8e1fa6781caec1cd7570f2d88 /src/common | |
parent | Merge pull request #9393 from liamwhite/more-vulkan (diff) | |
parent | core: add option to break on unmapped access (diff) | |
download | yuzu-e1f5f4bdea084d499a20c6c29902e296224fc5ed.tar yuzu-e1f5f4bdea084d499a20c6c29902e296224fc5ed.tar.gz yuzu-e1f5f4bdea084d499a20c6c29902e296224fc5ed.tar.bz2 yuzu-e1f5f4bdea084d499a20c6c29902e296224fc5ed.tar.lz yuzu-e1f5f4bdea084d499a20c6c29902e296224fc5ed.tar.xz yuzu-e1f5f4bdea084d499a20c6c29902e296224fc5ed.tar.zst yuzu-e1f5f4bdea084d499a20c6c29902e296224fc5ed.zip |
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/settings.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index c0620066c..29b730cff 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -400,6 +400,7 @@ struct Values { Setting<bool> cpuopt_fastmem{true, "cpuopt_fastmem"}; Setting<bool> cpuopt_fastmem_exclusives{true, "cpuopt_fastmem_exclusives"}; Setting<bool> cpuopt_recompile_exclusives{true, "cpuopt_recompile_exclusives"}; + Setting<bool> cpuopt_ignore_memory_aborts{true, "cpuopt_ignore_memory_aborts"}; SwitchableSetting<bool> cpuopt_unsafe_unfuse_fma{true, "cpuopt_unsafe_unfuse_fma"}; SwitchableSetting<bool> cpuopt_unsafe_reduce_fp_error{true, "cpuopt_unsafe_reduce_fp_error"}; |