aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/mm/mm_u.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-14 21:47:07 -0400
committerGitHub <noreply@github.com>2018-08-14 21:47:07 -0400
commit409d2e07c22a2adfedb22087fafec76110acce3a (patch)
tree656cd16e65882edf86a093aafe731c678724ae13 /src/core/hle/service/mm/mm_u.h
parent8dc440758682e04f1a9443f2eced23388a988f1d (diff)
parentb6c47b578f2945c0909728e26b1c3dd6982a59a5 (diff)
Merge pull request #1056 from lioncash/mm
mm_u: Move interface class into the cpp file
Diffstat (limited to 'src/core/hle/service/mm/mm_u.h')
-rw-r--r--src/core/hle/service/mm/mm_u.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/core/hle/service/mm/mm_u.h b/src/core/hle/service/mm/mm_u.h
index 79eeedf9c..5439fa653 100644
--- a/src/core/hle/service/mm/mm_u.h
+++ b/src/core/hle/service/mm/mm_u.h
@@ -8,21 +8,6 @@
namespace Service::MM {
-class MM_U final : public ServiceFramework<MM_U> {
-public:
- MM_U();
- ~MM_U() = default;
-
-private:
- void Initialize(Kernel::HLERequestContext& ctx);
- void SetAndWait(Kernel::HLERequestContext& ctx);
- void Get(Kernel::HLERequestContext& ctx);
-
- u32 min{0};
- u32 max{0};
- u32 current{0};
-};
-
/// Registers all MM services with the specified service manager.
void InstallInterfaces(SM::ServiceManager& service_manager);