summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/prepo/prepo.cpp
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2019-09-22 08:37:59 +0200
committerDavid Marcec <dmarcecguzman@gmail.com>2019-09-22 08:37:59 +0200
commit36a97dd8a295d90cf9ec6c186ca7dc74a49d173d (patch)
tree010a5bd7a1680ca8b4f55d397bb9e7a2456c2a5e /src/core/hle/service/prepo/prepo.cpp
parentDeglobalize System: NvFlinger (diff)
downloadyuzu-36a97dd8a295d90cf9ec6c186ca7dc74a49d173d.tar
yuzu-36a97dd8a295d90cf9ec6c186ca7dc74a49d173d.tar.gz
yuzu-36a97dd8a295d90cf9ec6c186ca7dc74a49d173d.tar.bz2
yuzu-36a97dd8a295d90cf9ec6c186ca7dc74a49d173d.tar.lz
yuzu-36a97dd8a295d90cf9ec6c186ca7dc74a49d173d.tar.xz
yuzu-36a97dd8a295d90cf9ec6c186ca7dc74a49d173d.tar.zst
yuzu-36a97dd8a295d90cf9ec6c186ca7dc74a49d173d.zip
Diffstat (limited to 'src/core/hle/service/prepo/prepo.cpp')
-rw-r--r--src/core/hle/service/prepo/prepo.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/core/hle/service/prepo/prepo.cpp b/src/core/hle/service/prepo/prepo.cpp
index 0f79135ff..18d895263 100644
--- a/src/core/hle/service/prepo/prepo.cpp
+++ b/src/core/hle/service/prepo/prepo.cpp
@@ -15,7 +15,7 @@ namespace Service::PlayReport {
class PlayReport final : public ServiceFramework<PlayReport> {
public:
- explicit PlayReport(Core::System& system, const char* name)
+ explicit PlayReport(const char* name, Core::System& system)
: ServiceFramework{name}, system(system) {
// clang-format off
static const FunctionInfo functions[] = {
@@ -128,12 +128,12 @@ private:
Core::System& system;
};
-void InstallInterfaces(Core::System& system) {
- std::make_shared<PlayReport>(system, "prepo:a")->InstallAsService(system.ServiceManager());
- std::make_shared<PlayReport>(system, "prepo:a2")->InstallAsService(system.ServiceManager());
- std::make_shared<PlayReport>(system, "prepo:m")->InstallAsService(system.ServiceManager());
- std::make_shared<PlayReport>(system, "prepo:s")->InstallAsService(system.ServiceManager());
- std::make_shared<PlayReport>(system, "prepo:u")->InstallAsService(system.ServiceManager());
+void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system) {
+ std::make_shared<PlayReport>("prepo:a", system)->InstallAsService(service_manager);
+ std::make_shared<PlayReport>("prepo:a2", system)->InstallAsService(service_manager);
+ std::make_shared<PlayReport>("prepo:m", system)->InstallAsService(service_manager);
+ std::make_shared<PlayReport>("prepo:s", system)->InstallAsService(service_manager);
+ std::make_shared<PlayReport>("prepo:u", system)->InstallAsService(service_manager);
}
} // namespace Service::PlayReport