mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-27 17:07:10 +02:00
Discard higher 32-bits of IPC message magic and command number (#911)
This commit is contained in:
parent
bbd0ade4dd
commit
e7fea247d8
1 changed files with 2 additions and 2 deletions
|
@ -53,8 +53,8 @@ namespace Ryujinx.HLE.HOS.Ipc
|
||||||
else if (request.Type == IpcMessageType.Control ||
|
else if (request.Type == IpcMessageType.Control ||
|
||||||
request.Type == IpcMessageType.ControlWithContext)
|
request.Type == IpcMessageType.ControlWithContext)
|
||||||
{
|
{
|
||||||
long magic = reqReader.ReadInt64();
|
uint magic = (uint)reqReader.ReadUInt64();
|
||||||
long cmdId = reqReader.ReadInt64();
|
uint cmdId = (uint)reqReader.ReadUInt64();
|
||||||
|
|
||||||
switch (cmdId)
|
switch (cmdId)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue