From aecc7c89197829b0e2941c2080971aaf2760d8a7 Mon Sep 17 00:00:00 2001 From: Tsubasa0504 <60139445+Tsubasa0504@users.noreply.github.com> Date: Sun, 4 Aug 2024 22:56:08 +0900 Subject: [PATCH] Add files via upload --- .../HOS/Services/Nim/IShopServiceAccessServerInterface.cs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessServerInterface.cs b/src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessServerInterface.cs index 4227449a7d..632f460194 100644 --- a/src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessServerInterface.cs +++ b/src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessServerInterface.cs @@ -45,13 +45,7 @@ namespace Ryujinx.HLE.HOS.Services.Nim // CreateServerInterface2(pid, handle, u64) -> object public ResultCode CreateServerInterface2(ServiceCtx context) { - context.Device.System.KernelContext.Syscall.CloseHandle(context.Request.HandleDesc.ToCopy[0]); - - MakeObject(context, new IShopServiceAccessServer()); - - Logger.Stub?.PrintStub(LogClass.ServiceNim); - - return ResultCode.Success; + return CreateServerInterface(context); } } }