diff options
| author | 2020-08-21 23:06:21 -0400 | |
|---|---|---|
| committer | 2020-08-21 23:06:21 -0400 | |
| commit | 66ac7cf730f72f07b024c61b885a7043f68818dd (patch) | |
| tree | c56c94c473afea752846befce21eec48a61648eb /src/core/settings.h | |
| parent | Merge pull request #4523 from lioncash/self-assign (diff) | |
| parent | dynarmic: Add unsafe optimizations (diff) | |
| download | yuzu-66ac7cf730f72f07b024c61b885a7043f68818dd.tar.gz yuzu-66ac7cf730f72f07b024c61b885a7043f68818dd.tar.xz yuzu-66ac7cf730f72f07b024c61b885a7043f68818dd.zip | |
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 { | |||
| 359 | 359 | ||
| 360 | enum class CPUAccuracy { | 360 | enum class CPUAccuracy { |
| 361 | Accurate = 0, | 361 | Accurate = 0, |
| 362 | DebugMode = 1, | 362 | Unsafe = 1, |
| 363 | DebugMode = 2, | ||
| 363 | }; | 364 | }; |
| 364 | 365 | ||
| 365 | extern bool configuring_global; | 366 | extern bool configuring_global; |
| @@ -419,6 +420,9 @@ struct Values { | |||
| 419 | bool cpuopt_misc_ir; | 420 | bool cpuopt_misc_ir; |
| 420 | bool cpuopt_reduce_misalign_checks; | 421 | bool cpuopt_reduce_misalign_checks; |
| 421 | 422 | ||
| 423 | bool cpuopt_unsafe_unfuse_fma; | ||
| 424 | bool cpuopt_unsafe_reduce_fp_error; | ||
| 425 | |||
| 422 | // Renderer | 426 | // Renderer |
| 423 | Setting<RendererBackend> renderer_backend; | 427 | Setting<RendererBackend> renderer_backend; |
| 424 | bool renderer_debug; | 428 | bool renderer_debug; |