summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nfp/nfp.h
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2019-09-21 11:03:20 +0200
committerDavid Marcec <dmarcecguzman@gmail.com>2019-09-22 08:30:32 +0200
commit8df2a98f755aa76cf0133d5a6f986183aa23c0cf (patch)
treef30a78f1b3d024c3e6ca75209d708326c2bbb729 /src/core/hle/service/nfp/nfp.h
parentDeglobalize System: LDR (diff)
downloadyuzu-8df2a98f755aa76cf0133d5a6f986183aa23c0cf.tar
yuzu-8df2a98f755aa76cf0133d5a6f986183aa23c0cf.tar.gz
yuzu-8df2a98f755aa76cf0133d5a6f986183aa23c0cf.tar.bz2
yuzu-8df2a98f755aa76cf0133d5a6f986183aa23c0cf.tar.lz
yuzu-8df2a98f755aa76cf0133d5a6f986183aa23c0cf.tar.xz
yuzu-8df2a98f755aa76cf0133d5a6f986183aa23c0cf.tar.zst
yuzu-8df2a98f755aa76cf0133d5a6f986183aa23c0cf.zip
Diffstat (limited to 'src/core/hle/service/nfp/nfp.h')
-rw-r--r--src/core/hle/service/nfp/nfp.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/hle/service/nfp/nfp.h b/src/core/hle/service/nfp/nfp.h
index a1817e991..9718ef745 100644
--- a/src/core/hle/service/nfp/nfp.h
+++ b/src/core/hle/service/nfp/nfp.h
@@ -16,7 +16,7 @@ class Module final {
public:
class Interface : public ServiceFramework<Interface> {
public:
- explicit Interface(std::shared_ptr<Module> module, const char* name);
+ explicit Interface(std::shared_ptr<Module> module, Core::System& system, const char* name);
~Interface() override;
struct ModelInfo {
@@ -43,9 +43,10 @@ public:
protected:
std::shared_ptr<Module> module;
+ Core::System& system;
};
};
-void InstallInterfaces(SM::ServiceManager& service_manager);
+void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system);
} // namespace Service::NFP