From fc14ad3d82594ffe08f037330bf783f13a73b29d Mon Sep 17 00:00:00 2001 From: lizzie Date: Sat, 14 Feb 2026 20:11:42 +0000 Subject: [PATCH] [hle] fix spl being registered as 'spl' instead of 'spl:' Signed-off-by: lizzie --- src/core/hle/service/spl/spl_module.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/service/spl/spl_module.cpp b/src/core/hle/service/spl/spl_module.cpp index b8aa99ccd1..21ca3341c1 100644 --- a/src/core/hle/service/spl/spl_module.cpp +++ b/src/core/hle/service/spl/spl_module.cpp @@ -178,7 +178,7 @@ void LoopProcess(Core::System& system) { auto module = std::make_shared(); server_manager->RegisterNamedService("csrng", std::make_shared(system, module)); - server_manager->RegisterNamedService("spl", std::make_shared(system, module)); + server_manager->RegisterNamedService("spl:", std::make_shared(system, module)); server_manager->RegisterNamedService("spl:mig", std::make_shared(system, module)); server_manager->RegisterNamedService("spl:fs", std::make_shared(system, module)); server_manager->RegisterNamedService("spl:ssl", std::make_shared(system, module));