diff options
| author | 2021-07-09 21:45:45 +0200 | |
|---|---|---|
| committer | 2021-07-09 21:45:45 +0200 | |
| commit | 7dca756f30242c6af5849856375129c561584049 (patch) | |
| tree | 640de365e5b173c4a5734b60a02891e0dfaa32d0 /src/common/settings.cpp | |
| parent | Merge pull request #6581 from lat9nq/isolate-debug-settings (diff) | |
| parent | settings, arm_dynarmic, yuzu qt: Move CPU debugging option (diff) | |
| download | yuzu-7dca756f30242c6af5849856375129c561584049.tar.gz yuzu-7dca756f30242c6af5849856375129c561584049.tar.xz yuzu-7dca756f30242c6af5849856375129c561584049.zip | |
Merge pull request #6573 from lat9nq/cpu-settings-cleanup-2
core,common,yuzu qt: Add CPU accuracy option 'Auto'
Diffstat (limited to 'src/common/settings.cpp')
| -rw-r--r-- | src/common/settings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp index 0061e29cc..e1973af85 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp | |||
| @@ -93,7 +93,7 @@ bool IsGPULevelHigh() { | |||
| 93 | } | 93 | } |
| 94 | 94 | ||
| 95 | bool IsFastmemEnabled() { | 95 | bool IsFastmemEnabled() { |
| 96 | if (values.cpu_accuracy.GetValue() == CPUAccuracy::DebugMode) { | 96 | if (values.cpu_debug_mode) { |
| 97 | return static_cast<bool>(values.cpuopt_fastmem); | 97 | return static_cast<bool>(values.cpuopt_fastmem); |
| 98 | } | 98 | } |
| 99 | return true; | 99 | return true; |