summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/spsm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/am/spsm.h')
-rw-r--r--src/core/hle/service/am/spsm.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/hle/service/am/spsm.h b/src/core/hle/service/am/spsm.h
index 3a0b979fa..04bbf9e68 100644
--- a/src/core/hle/service/am/spsm.h
+++ b/src/core/hle/service/am/spsm.h
@@ -6,11 +6,15 @@
#include "core/hle/service/service.h"
+namespace Core {
+class System;
+}
+
namespace Service::AM {
class SPSM final : public ServiceFramework<SPSM> {
public:
- explicit SPSM();
+ explicit SPSM(Core::System& system_);
~SPSM() override;
};