diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-04-04 21:01:36 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-04-04 21:01:36 -0300 |
| commit | 9754836c1bf512c3be4a08a21024a4ed7ae745f7 (patch) | |
| tree | 1fd2bfdfea84c8e644189876dd96d3441ccd7f85 /Ryujinx.Core/OsHle/Svc/SvcSystem.cs | |
| parent | 2d337568783e5aaf87be5bc82c14bccc87c24cb7 (diff) | |
Fix GetAvailableLanguageCodes, stub ListAddOnContent and NvGpuAsIoctlRemap (0x4114)
Diffstat (limited to 'Ryujinx.Core/OsHle/Svc/SvcSystem.cs')
| -rw-r--r-- | Ryujinx.Core/OsHle/Svc/SvcSystem.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.Core/OsHle/Svc/SvcSystem.cs b/Ryujinx.Core/OsHle/Svc/SvcSystem.cs index 3c1ed215..c9e992d5 100644 --- a/Ryujinx.Core/OsHle/Svc/SvcSystem.cs +++ b/Ryujinx.Core/OsHle/Svc/SvcSystem.cs @@ -156,7 +156,7 @@ namespace Ryujinx.Core.OsHle.Svc KSession Session = new KSession(ServiceFactory.MakeService(Name)); ulong Handle = (ulong)Process.HandleTable.OpenHandle(Session); - + ThreadState.X0 = 0; ThreadState.X1 = Handle; } @@ -268,7 +268,7 @@ namespace Ryujinx.Core.OsHle.Svc case 6: ThreadState.X1 = MemoryRegions.TotalMemoryAvailable; break; - + case 7: ThreadState.X1 = MemoryRegions.TotalMemoryUsed + CurrentHeapSize; break; |
