From 976ced176ae92440dab2867e8eaaf2b560a34dc2 Mon Sep 17 00:00:00 2001 From: Ac_K Date: Sun, 14 Jul 2019 20:47:41 +0200 Subject: [PATCH] Fix --- Ryujinx.HLE/HOS/Services/IpcService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx.HLE/HOS/Services/IpcService.cs b/Ryujinx.HLE/HOS/Services/IpcService.cs index 2bf3b95931..00907f889a 100644 --- a/Ryujinx.HLE/HOS/Services/IpcService.cs +++ b/Ryujinx.HLE/HOS/Services/IpcService.cs @@ -103,7 +103,7 @@ namespace Ryujinx.HLE.HOS.Services if (ServiceConfiguration.IgnoreMissingServices || serviceExists) { - ResultCode result = 0; + ResultCode result = ResultCode.Success; context.ResponseData.BaseStream.Seek(_isDomain ? 0x20 : 0x10, SeekOrigin.Begin);