diff --git a/src/core/hle/service/act/act.cpp b/src/core/hle/service/act/act.cpp index c2d295636..3b74c6d5f 100644 --- a/src/core/hle/service/act/act.cpp +++ b/src/core/hle/service/act/act.cpp @@ -10,7 +10,7 @@ namespace Service::ACT { Module::Interface::Interface(std::shared_ptr act, const char* name) - : ServiceFramework(name, 1 /* Placeholder */), act(std::move(act)) {} + : ServiceFramework(name, 3), act(std::move(act)) {} Module::Interface::~Interface() = default;