diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-02-09 21:23:16 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-02-09 21:23:16 -0300 |
| commit | 3d0b4d345fa8240c355c1e581d8e7477e03596d0 (patch) | |
| tree | 88c1f92bfaaf58786804e3116d1ffd2f51f5137c | |
| parent | 322f28668dc93ff0ad348bd75ddaa25edc232921 (diff) | |
Fix bad rename
| -rw-r--r-- | Ryujinx/OsHle/Svc/SvcSystem.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx/OsHle/Svc/SvcSystem.cs b/Ryujinx/OsHle/Svc/SvcSystem.cs index 3c541381..5721c53b 100644 --- a/Ryujinx/OsHle/Svc/SvcSystem.cs +++ b/Ryujinx/OsHle/Svc/SvcSystem.cs @@ -93,7 +93,7 @@ namespace Ryujinx.OsHle.Svc if (Session != null) { - IpcHandler.ProcessRequest(Ns, Memory, Session, Cmd, CmdPtr, Handle); + IpcHandler.IpcCall(Ns, Memory, Session, Cmd, CmdPtr, Handle); byte[] Response = AMemoryHelper.ReadBytes(Memory, CmdPtr, (int)Size); |
