diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-08-14 19:02:42 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-14 19:02:42 -0300 |
| commit | 9ac5583513070f3f58225250ff2b1edaa080969c (patch) | |
| tree | bb0fd3c5729aacba8540bf70bee773ffdf4e6025 /Ryujinx.HLE/OsHle/Kernel/SvcSystem.cs | |
| parent | 17f54b5d78ac9ee83419dc204a02e3887bdca8e4 (diff) | |
Better support for user accounts (#349)
* Better support for user accounts
* Nits
* Check for invalid ids
Diffstat (limited to 'Ryujinx.HLE/OsHle/Kernel/SvcSystem.cs')
| -rw-r--r-- | Ryujinx.HLE/OsHle/Kernel/SvcSystem.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Ryujinx.HLE/OsHle/Kernel/SvcSystem.cs b/Ryujinx.HLE/OsHle/Kernel/SvcSystem.cs index a968a1db..08305522 100644 --- a/Ryujinx.HLE/OsHle/Kernel/SvcSystem.cs +++ b/Ryujinx.HLE/OsHle/Kernel/SvcSystem.cs @@ -242,6 +242,7 @@ namespace Ryujinx.HLE.OsHle.Kernel Process.Scheduler.Suspend(CurrThread); IpcMessage Cmd = new IpcMessage(CmdData, CmdPtr); + long Result = IpcHandler.IpcCall(Ns, Process, Memory, Session, Cmd, CmdPtr); Thread.Yield(); |
