From 753b36c6ef542a3a47cc99640609cc433e7ba247 Mon Sep 17 00:00:00 2001 From: Steveice10 <1269164+Steveice10@users.noreply.github.com> Date: Thu, 6 Jul 2023 13:16:46 -0700 Subject: [PATCH] act: Use correct service session limit. (#6670) --- src/core/hle/service/act/act.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;