mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 01:25:25 +00:00
Fix error code returned by CloseSession (#787)
When we close a session via IPC, we should return an error code. This fix an assert in some games that are shipped with debug modules.
This commit is contained in:
parent
9142aca48f
commit
4210fe2b7b
|
@ -96,6 +96,7 @@ namespace Ryujinx.HLE.HOS.Ipc
|
||||||
else if (request.Type == IpcMessageType.CloseSession)
|
else if (request.Type == IpcMessageType.CloseSession)
|
||||||
{
|
{
|
||||||
// TODO
|
// TODO
|
||||||
|
return KernelResult.PortRemoteClosed;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue