diff options
| author | Ac_K <Acoustik666@gmail.com> | 2018-02-25 00:08:54 +0100 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-02-24 20:08:54 -0300 |
| commit | 8fa26a18c58c773dd0f3cf0190bd30f8d2d1430d (patch) | |
| tree | 4d60cf5be71fb20a22d1534a0830c072dffbb728 | |
| parent | c9f54aabfb7e5cffe0f384cada09a71c59298e03 (diff) | |
Update IpcMessage.cs (#38)
Temporary Fix by Misson20000
| -rw-r--r-- | Ryujinx.Core/OsHle/Ipc/IpcMessage.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.Core/OsHle/Ipc/IpcMessage.cs b/Ryujinx.Core/OsHle/Ipc/IpcMessage.cs index 3b38c451..447f3f9a 100644 --- a/Ryujinx.Core/OsHle/Ipc/IpcMessage.cs +++ b/Ryujinx.Core/OsHle/Ipc/IpcMessage.cs @@ -108,7 +108,7 @@ namespace Ryujinx.Core.OsHle.Ipc RecvListCount = 0; } - if (Domain) + if (Domain && Type == IpcMessageType.Request) { int DomWord0 = Reader.ReadInt32(); @@ -228,4 +228,4 @@ namespace Ryujinx.Core.OsHle.Ipc return -1; } } -}
\ No newline at end of file +} |
