Browse Source
Merge pull request #7752 from Morph1984/SetCpuOverclockEnabled
service: apm: Stub ISession SetCpuOverclockEnabled
pull/15/merge
bunnei
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
13 additions and
1 deletions
-
src/core/hle/service/apm/apm_interface.cpp
|
|
|
@ -17,7 +17,7 @@ public: |
|
|
|
static const FunctionInfo functions[] = { |
|
|
|
{0, &ISession::SetPerformanceConfiguration, "SetPerformanceConfiguration"}, |
|
|
|
{1, &ISession::GetPerformanceConfiguration, "GetPerformanceConfiguration"}, |
|
|
|
{2, nullptr, "SetCpuOverclockEnabled"}, |
|
|
|
{2, &ISession::SetCpuOverclockEnabled, "SetCpuOverclockEnabled"}, |
|
|
|
}; |
|
|
|
RegisterHandlers(functions); |
|
|
|
} |
|
|
|
@ -47,6 +47,18 @@ private: |
|
|
|
rb.PushEnum(controller.GetCurrentPerformanceConfiguration(mode)); |
|
|
|
} |
|
|
|
|
|
|
|
void SetCpuOverclockEnabled(Kernel::HLERequestContext& ctx) { |
|
|
|
IPC::RequestParser rp{ctx}; |
|
|
|
|
|
|
|
const auto cpu_overclock_enabled = rp.Pop<bool>(); |
|
|
|
|
|
|
|
LOG_WARNING(Service_APM, "(STUBBED) called, cpu_overclock_enabled={}", |
|
|
|
cpu_overclock_enabled); |
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2}; |
|
|
|
rb.Push(ResultSuccess); |
|
|
|
} |
|
|
|
|
|
|
|
Controller& controller; |
|
|
|
}; |
|
|
|
|
|
|
|
|