diff options
author | MerryMage <MerryMage@users.noreply.github.com> | 2020-08-16 13:19:55 +0100 |
---|---|---|
committer | MerryMage <MerryMage@users.noreply.github.com> | 2020-08-16 14:15:39 +0100 |
commit | 836ec9176aee5558c69764df46aa8347fca2e3d2 (patch) | |
tree | d2c4bf5c69c31c6f090f67e881817ee17b43dd07 /src/core/settings.h | |
parent | db96034ea429cf0b0b5e2bac790392d9e2f50990 (diff) |
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 bb145f1937..3681b5e9df 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; |