From 341b8751b98e0e49d5ef3c3c052590c47aabe4a8 Mon Sep 17 00:00:00 2001 From: WilliamWsyHK <> Date: Sun, 9 Dec 2018 13:05:13 +0800 Subject: [PATCH] Split sfciMagic and version to two variables, since version can be 1. --- Ryujinx.HLE/HOS/Services/IpcService.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Ryujinx.HLE/HOS/Services/IpcService.cs b/Ryujinx.HLE/HOS/Services/IpcService.cs index ec43430e3f..2cb659275d 100644 --- a/Ryujinx.HLE/HOS/Services/IpcService.cs +++ b/Ryujinx.HLE/HOS/Services/IpcService.cs @@ -84,7 +84,8 @@ namespace Ryujinx.HLE.HOS.Services } } - long sfciMagic = context.RequestData.ReadInt64(); + int sfciMagic = context.RequestData.ReadInt32(); + int version = context.RequestData.ReadInt32(); int commandId = (int)context.RequestData.ReadInt64(); if (service.Commands.TryGetValue(commandId, out ServiceProcessRequest processRequest))