Fix error code returned by CloseSession

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:
Thog 2019-10-11 17:04:17 +02:00
parent 1aba033ba7
commit 4ededf9c98
No known key found for this signature in database
GPG key ID: 0CD291558FAFDBC6

View file

@ -96,6 +96,7 @@ namespace Ryujinx.HLE.HOS.Ipc
else if (request.Type == IpcMessageType.CloseSession)
{
// TODO
return KernelResult.PortRemoteClosed;
}
else
{