diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-02-21 18:56:52 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-02-21 18:56:52 -0300 |
| commit | b2f733da7839ff8ba7a70a529cb9eb3eea9f0af6 (patch) | |
| tree | 2ed5913d93ecf3deeabfe706934b57ee6f2309b6 /Ryujinx.Core/OsHle/Svc/SvcSystem.cs | |
| parent | 3696255457dce06111ce5a07544d30239366ebf6 (diff) | |
FspSrv improvements, also fix ImageEnd for NROs without a MOD0 section
Diffstat (limited to 'Ryujinx.Core/OsHle/Svc/SvcSystem.cs')
| -rw-r--r-- | Ryujinx.Core/OsHle/Svc/SvcSystem.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Core/OsHle/Svc/SvcSystem.cs b/Ryujinx.Core/OsHle/Svc/SvcSystem.cs index 7f593c8f..40369b99 100644 --- a/Ryujinx.Core/OsHle/Svc/SvcSystem.cs +++ b/Ryujinx.Core/OsHle/Svc/SvcSystem.cs @@ -106,7 +106,7 @@ namespace Ryujinx.Core.OsHle.Svc if (Session != null) { - IpcHandler.IpcCall(Ns, Memory, Session, Cmd, CmdPtr, Handle); + IpcHandler.IpcCall(Ns, Memory, Session, Cmd, ThreadState.ThreadId, CmdPtr, Handle); byte[] Response = AMemoryHelper.ReadBytes(Memory, CmdPtr, (int)Size); |
