diff options
| author | Fernando S <fsahmkow27@gmail.com> | 2021-07-09 21:45:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-09 21:45:45 +0200 |
| commit | 7dca756f30242c6af5849856375129c561584049 (patch) | |
| tree | 640de365e5b173c4a5734b60a02891e0dfaa32d0 /src/common/settings.cpp | |
| parent | 279424233168b6ea789915a147c971b2b737277c (diff) | |
| parent | dc06e11a7ba24c6052cad2c45584c628a8188274 (diff) | |
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() { } bool IsFastmemEnabled() { - if (values.cpu_accuracy.GetValue() == CPUAccuracy::DebugMode) { + if (values.cpu_debug_mode) { return static_cast<bool>(values.cpuopt_fastmem); } return true; |
