From 46ca83cc366a21383a6886593c428cdfab961354 Mon Sep 17 00:00:00 2001 From: PabloMK7 Date: Sat, 7 Mar 2026 21:11:45 +0100 Subject: [PATCH] core: Enable LLE CECD and BOSS when online LLE modules are enabled (#1842) --- src/core/hle/service/service.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index 6ead40057..26fee2fc4 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp @@ -69,14 +69,14 @@ 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, false}, + {"BOSS", 0x00040130'00003402, BOSS::InstallInterfaces, true}, {"CAM", 0x00040130'00001602, [](Core::System& system) { CAM::InstallInterfaces(system); Y2R::InstallInterfaces(system); }, false}, - {"CECD", 0x00040130'00002602, CECD::InstallInterfaces, false}, + {"CECD", 0x00040130'00002602, CECD::InstallInterfaces, true}, {"CFG", 0x00040130'00001702, CFG::InstallInterfaces, false}, {"DLP", 0x00040130'00002802, DLP::InstallInterfaces, true}, {"DSP", 0x00040130'00001A02, DSP::InstallInterfaces, false},