Split sfciMagic and version to two variables, since version can be 1.
This commit is contained in:
parent
fe472e60da
commit
341b8751b9
1 changed files with 2 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Reference in a new issue