diff options
author | bunnei <bunneidev@gmail.com> | 2020-08-21 23:06:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-21 23:06:21 -0400 |
commit | 66ac7cf730f72f07b024c61b885a7043f68818dd (patch) | |
tree | c56c94c473afea752846befce21eec48a61648eb /src/core/settings.h | |
parent | 53fbf8e206bf20596dcc14022fa25f6621a06f4c (diff) | |
parent | 836ec9176aee5558c69764df46aa8347fca2e3d2 (diff) |
Merge pull request #4541 from MerryMage/yolo
dynarmic: Add unsafe optimizations
Diffstat (limited to 'src/core/settings.h')
-rw-r--r-- | src/core/settings.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/settings.h b/src/core/settings.h index bb145f193..3681b5e9d 100644 --- a/src/core/settings.h +++ b/src/core/settings.h @@ -359,7 +359,8 @@ enum class GPUAccuracy : u32 { enum class CPUAccuracy { Accurate = 0, - DebugMode = 1, + Unsafe = 1, + DebugMode = 2, }; extern bool configuring_global; @@ -419,6 +420,9 @@ struct Values { bool cpuopt_misc_ir; bool cpuopt_reduce_misalign_checks; + bool cpuopt_unsafe_unfuse_fma; + bool cpuopt_unsafe_reduce_fp_error; + // Renderer Setting<RendererBackend> renderer_backend; bool renderer_debug; |