From 9ac2ac8808ee26fbd585c7e5a24158a7bd5fb1d6 Mon Sep 17 00:00:00 2001 From: lizzie Date: Tue, 15 Sep 2026 08:08:36 +0000 Subject: [PATCH] 2026-09-15 08:08:36 Signed-off-by: lizzie --- src/core/hle/service/ngc/ngc.cpp | 44 +++++--------------------------- 1 file changed, 7 insertions(+), 37 deletions(-) diff --git a/src/core/hle/service/ngc/ngc.cpp b/src/core/hle/service/ngc/ngc.cpp index 32345a9c8a..eabedef90f 100644 --- a/src/core/hle/service/ngc/ngc.cpp +++ b/src/core/hle/service/ngc/ngc.cpp @@ -181,7 +181,7 @@ public: // clang-format off static const FunctionInfo functions[] = { {450, nullptr, "Cmd450"}, - {451, D<&IUserShimScopedObject::Cmd451>, "Cmd451"}, + {451, nullptr, "Cmd451"}, {452, D<&IUserShimScopedObject::Cmd452>, "Cmd451"}, {453, nullptr, "Cmd453"}, {454, D<&IUserShimScopedObject::Cmd454>, "Cmd454"}, @@ -193,11 +193,6 @@ public: RegisterHandlers(functions); } - Result Cmd451() { - LOG_WARNING(Service_NGC, "stubbed"); - R_SUCCEED(); - } - Result Cmd452(UndefinedIUserShimScopedObjectParam unk0, Out unk1) { LOG_WARNING(Service_NGC, "stubbed"); R_THROW(IPC::ResultNotSupported); @@ -231,25 +226,20 @@ public: explicit ISystemShimScopedObject(Core::System& system_) : ServiceFramework(system_, "ISystemShimScopedObject") { // clang-format off static const FunctionInfo functions[] = { - {106, nullptr, "ConvertCurrentObjectToDomain"}, - {107, D<&ISystemShimScopedObject::Cmd107>, "Cmd107"}, + {106, nullptr, "Cmd106"}, + {107, nullptr, "Cmd107"}, {108, D<&ISystemShimScopedObject::Cmd108>, "Cmd108"}, {207, nullptr, "Cmd207"}, {208, D<&ISystemShimScopedObject::Cmd208>, "Cmd208"}, - {209, D<&ISystemShimScopedObject::Cmd209>, "Cmd209"}, - {210, D<&ISystemShimScopedObject::Cmd210>, "Cmd210"}, - {211, D<&ISystemShimScopedObject::Cmd211>, "Cmd211"}, - {212, D<&ISystemShimScopedObject::Cmd212>, "Cmd212"}, + {209, nullptr, "Cmd209"}, + {210, nullptr, "Cmd210"}, + {211, nullptr, "Cmd211"}, + {212, nullptr, "Cmd212"}, }; // clang-format on RegisterHandlers(functions); } - Result Cmd107() { - LOG_WARNING(Service_NGC, "stubbed"); - R_SUCCEED(); - } - Result Cmd108() { LOG_WARNING(Service_NGC, "stubbed"); R_THROW(IPC::ResultNotSupported); @@ -259,26 +249,6 @@ public: LOG_WARNING(Service_NGC, "stubbed"); R_THROW(IPC::ResultNotSupported); } - - Result Cmd209(u32 unk0) { - LOG_WARNING(Service_NGC, "stubbed"); - R_SUCCEED(); - } - - Result Cmd210() { - LOG_WARNING(Service_NGC, "stubbed"); - R_SUCCEED(); - } - - Result Cmd211(Out unk1, OutBuffer unk0) { - LOG_WARNING(Service_NGC, "stubbed"); - R_SUCCEED(); - } - - Result Cmd212(InBuffer unk0) { - LOG_WARNING(Service_NGC, "stubbed"); - R_SUCCEED(); - } }; class ISystemService final : public ServiceFramework {