summaryrefslogtreecommitdiff
path: root/src/core/hle
diff options
context:
space:
mode:
authorGravatar german772021-06-19 14:38:49 -0500
committerGravatar MonsterDruide12021-09-18 23:22:30 +0200
commitc01a872c8efa90065b6ba1a74079ddf6ec12058f (patch)
treed441117b0d133bff32b39f5060b31db57bc0413f /src/core/hle
parentcore: Hacky TAS syncing & load pausing (diff)
downloadyuzu-c01a872c8efa90065b6ba1a74079ddf6ec12058f.tar.gz
yuzu-c01a872c8efa90065b6ba1a74079ddf6ec12058f.tar.xz
yuzu-c01a872c8efa90065b6ba1a74079ddf6ec12058f.zip
config: Move TAS options to it's own menu
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/service/apm/apm_interface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/apm/apm_interface.cpp b/src/core/hle/service/apm/apm_interface.cpp
index 724483107..520ccfa88 100644
--- a/src/core/hle/service/apm/apm_interface.cpp
+++ b/src/core/hle/service/apm/apm_interface.cpp
@@ -121,7 +121,7 @@ void APM_Sys::SetCpuBoostMode(Kernel::HLERequestContext& ctx) {
121 121
122 LOG_DEBUG(Service_APM, "called, mode={:08X}", mode); 122 LOG_DEBUG(Service_APM, "called, mode={:08X}", mode);
123 123
124 Settings::values.is_cpu_boosted = (static_cast<u32>(mode) == 1); 124 Settings::values.is_cpu_boosted = (mode == CpuBoostMode::Full);
125 controller.SetFromCpuBoostMode(mode); 125 controller.SetFromCpuBoostMode(mode);
126 126
127 IPC::ResponseBuilder rb{ctx, 2}; 127 IPC::ResponseBuilder rb{ctx, 2};