diff options
| author | 2021-06-21 14:56:08 -0700 | |
|---|---|---|
| committer | 2021-06-21 14:56:08 -0700 | |
| commit | 0485b8e84bacbf7fd56081822faca46114cbeb85 (patch) | |
| tree | 2469aa1fb159c5bd4f5355b9d3d14e808c0c5b00 /src/common/settings.cpp | |
| parent | Merge pull request #6475 from ameerj/unlimit-fps (diff) | |
| parent | Update dynarmic and add new unsafe CPU option. (diff) | |
| download | yuzu-0485b8e84bacbf7fd56081822faca46114cbeb85.tar.gz yuzu-0485b8e84bacbf7fd56081822faca46114cbeb85.tar.xz yuzu-0485b8e84bacbf7fd56081822faca46114cbeb85.zip | |
Merge pull request #6499 from FernandoS27/we-were-on-a-break
Update dynarmic and add new unsafe CPU option.
Diffstat (limited to 'src/common/settings.cpp')
| -rw-r--r-- | src/common/settings.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp index 9ec71eced..6397308ec 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp | |||
| @@ -122,6 +122,7 @@ void RestoreGlobalState(bool is_powered_on) { | |||
| 122 | values.cpu_accuracy.SetGlobal(true); | 122 | values.cpu_accuracy.SetGlobal(true); |
| 123 | values.cpuopt_unsafe_unfuse_fma.SetGlobal(true); | 123 | values.cpuopt_unsafe_unfuse_fma.SetGlobal(true); |
| 124 | values.cpuopt_unsafe_reduce_fp_error.SetGlobal(true); | 124 | values.cpuopt_unsafe_reduce_fp_error.SetGlobal(true); |
| 125 | values.cpuopt_unsafe_ignore_standard_fpcr.SetGlobal(true); | ||
| 125 | values.cpuopt_unsafe_inaccurate_nan.SetGlobal(true); | 126 | values.cpuopt_unsafe_inaccurate_nan.SetGlobal(true); |
| 126 | values.cpuopt_unsafe_fastmem_check.SetGlobal(true); | 127 | values.cpuopt_unsafe_fastmem_check.SetGlobal(true); |
| 127 | 128 | ||