From d1d14cef79a6756d5ef165e0853d93e0a27b2dda Mon Sep 17 00:00:00 2001 From: PabloMK7 Date: Sun, 8 Mar 2026 19:24:52 +0100 Subject: [PATCH] core: Disable BOSS for enabled LLE online services (#1847) --- src/core/hle/service/service.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index 59971588c..8436f2be5 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp @@ -69,7 +69,7 @@ const std::array service_module_map{ {"AC", 0x00040130'00002402, AC::InstallInterfaces, false}, {"ACT", 0x00040130'00003802, ACT::InstallInterfaces, true}, {"AM", 0x00040130'00001502, AM::InstallInterfaces, false}, - {"BOSS", 0x00040130'00003402, BOSS::InstallInterfaces, true}, + {"BOSS", 0x00040130'00003402, BOSS::InstallInterfaces, false}, {"CAM", 0x00040130'00001602, [](Core::System& system) { CAM::InstallInterfaces(system);