aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/nim/nim.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-09-22 09:38:13 -0400
committerGitHub <noreply@github.com>2019-09-22 09:38:13 -0400
commit4ace69de9c90eb7d4a758aa3c3616a9c0d55bc5b (patch)
treecbf3e722bf583a48f851744c8276a2caf0b2e8ef /src/core/hle/service/nim/nim.h
parent9d69206cd00982e02f90845c98d7d6c9887645c3 (diff)
parent9513abbb0a0fcc9a1bf52eb320e015ba81856bf1 (diff)
Merge pull request #2884 from ogniK5377/deglobal-sys-services
Remove usage of System::CurrentInterface() from most services
Diffstat (limited to 'src/core/hle/service/nim/nim.h')
-rw-r--r--src/core/hle/service/nim/nim.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/hle/service/nim/nim.h b/src/core/hle/service/nim/nim.h
index 2a2a92df0..dbe25dc01 100644
--- a/src/core/hle/service/nim/nim.h
+++ b/src/core/hle/service/nim/nim.h
@@ -8,8 +8,12 @@ namespace Service::SM {
class ServiceManager;
}
+namespace Core {
+class System;
+}
+
namespace Service::NIM {
-void InstallInterfaces(SM::ServiceManager& sm);
+void InstallInterfaces(SM::ServiceManager& sm, Core::System& system);
} // namespace Service::NIM