aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/apm/interface.h
diff options
context:
space:
mode:
authorgerman <german@thesoftwareartisans.com>2021-01-07 23:56:49 -0600
committergerman <german@thesoftwareartisans.com>2021-01-08 09:44:56 -0600
commit385a4555d520b38a409143deeb29593ca6f885fd (patch)
tree5f020a9f7785c0fba26819b654971b25fe060c5b /src/core/hle/service/apm/interface.h
parentc72571055b785fe91f0796696c6173f8e82dd625 (diff)
Stub IsCpuOverclockEnabled
Diffstat (limited to 'src/core/hle/service/apm/interface.h')
-rw-r--r--src/core/hle/service/apm/interface.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/service/apm/interface.h b/src/core/hle/service/apm/interface.h
index 7d57c4978..063ad5308 100644
--- a/src/core/hle/service/apm/interface.h
+++ b/src/core/hle/service/apm/interface.h
@@ -20,6 +20,7 @@ public:
private:
void OpenSession(Kernel::HLERequestContext& ctx);
void GetPerformanceMode(Kernel::HLERequestContext& ctx);
+ void IsCpuOverclockEnabled(Kernel::HLERequestContext& ctx);
std::shared_ptr<Module> apm;
Controller& controller;