Split sfciMagic and version to two variables, since version can be 1.

This commit is contained in:
WilliamWsyHK 2018-12-09 13:05:13 +08:00
parent fe472e60da
commit 341b8751b9

View file

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