diff options
author | GPUCode <geoster3d@gmail.com> | 2023-11-17 21:23:48 +0100 |
---|---|---|
committer | t895 <clombardo169@gmail.com> | 2023-11-25 06:46:47 +0100 |
commit | 48388376206aaa7d887b41030019035a06203867 (patch) | |
tree | 6dc27b3fc69d7ec4a1d4247fd0a00b7542ef72d4 /src/common/settings.cpp | |
parent | externals: Add oaknut submodule (diff) | |
download | yuzu-48388376206aaa7d887b41030019035a06203867.tar yuzu-48388376206aaa7d887b41030019035a06203867.tar.gz yuzu-48388376206aaa7d887b41030019035a06203867.tar.bz2 yuzu-48388376206aaa7d887b41030019035a06203867.tar.lz yuzu-48388376206aaa7d887b41030019035a06203867.tar.xz yuzu-48388376206aaa7d887b41030019035a06203867.tar.zst yuzu-48388376206aaa7d887b41030019035a06203867.zip |
Diffstat (limited to 'src/common/settings.cpp')
-rw-r--r-- | src/common/settings.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp index 19dfe08da..167e984a6 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp @@ -156,8 +156,14 @@ bool IsFastmemEnabled() { return true; } -bool IsNceEnabled(bool is_64bit) { - return values.cpu_backend.GetValue() == CpuBackend::Nce && is_64bit; +static bool is_nce_enabled = false; + +void SetNceEnabled(bool is_64bit) { + is_nce_enabled = values.cpu_backend.GetValue() == CpuBackend::Nce && is_64bit; +} + +bool IsNceEnabled() { + return is_nce_enabled; } bool IsDockedMode() { |