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));