summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apm/apm.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2019-06-29 04:44:30 +0200
committerZach Hilman <zachhilman@gmail.com>2019-06-29 04:44:30 +0200
commit9175b00e7dba90e05ad2d9ae2a81644791da5998 (patch)
tree86bb9fd46055e53e7a5854a6f688be2b462032b5 /src/core/hle/service/apm/apm.h
parentapm: Add Controller class to manage speed data and application (diff)
downloadyuzu-9175b00e7dba90e05ad2d9ae2a81644791da5998.tar
yuzu-9175b00e7dba90e05ad2d9ae2a81644791da5998.tar.gz
yuzu-9175b00e7dba90e05ad2d9ae2a81644791da5998.tar.bz2
yuzu-9175b00e7dba90e05ad2d9ae2a81644791da5998.tar.lz
yuzu-9175b00e7dba90e05ad2d9ae2a81644791da5998.tar.xz
yuzu-9175b00e7dba90e05ad2d9ae2a81644791da5998.tar.zst
yuzu-9175b00e7dba90e05ad2d9ae2a81644791da5998.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/apm/apm.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/core/hle/service/apm/apm.h b/src/core/hle/service/apm/apm.h
index 4d7d5bb7c..cf4c2bb11 100644
--- a/src/core/hle/service/apm/apm.h
+++ b/src/core/hle/service/apm/apm.h
@@ -8,11 +8,6 @@
namespace Service::APM {
-enum class PerformanceMode : u8 {
- Handheld = 0,
- Docked = 1,
-};
-
class Module final {
public:
Module();
@@ -20,6 +15,6 @@ public:
};
/// Registers all AM services with the specified service manager.
-void InstallInterfaces(SM::ServiceManager& service_manager);
+void InstallInterfaces(Core::System& system);
} // namespace Service::APM