act: Use correct service session limit. (#6670)

This commit is contained in:
Steveice10 2023-07-06 13:16:46 -07:00 committed by GitHub
parent c00768d6d0
commit 753b36c6ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,7 +10,7 @@
namespace Service::ACT {
Module::Interface::Interface(std::shared_ptr<Module> act, const char* name)
: ServiceFramework(name, 1 /* Placeholder */), act(std::move(act)) {}
: ServiceFramework(name, 3), act(std::move(act)) {}
Module::Interface::~Interface() = default;