aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/ServiceCtx.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/ServiceCtx.cs')
-rw-r--r--Ryujinx.HLE/HOS/ServiceCtx.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.HLE/HOS/ServiceCtx.cs b/Ryujinx.HLE/HOS/ServiceCtx.cs
index df74ba0a..fa6cfca3 100644
--- a/Ryujinx.HLE/HOS/ServiceCtx.cs
+++ b/Ryujinx.HLE/HOS/ServiceCtx.cs
@@ -11,7 +11,7 @@ namespace Ryujinx.HLE.HOS
{
public Switch Device { get; }
public KProcess Process { get; }
- public IMemoryManager Memory { get; }
+ public MemoryManager Memory { get; }
public KThread Thread { get; }
public KClientSession Session { get; }
public IpcMessage Request { get; }
@@ -22,7 +22,7 @@ namespace Ryujinx.HLE.HOS
public ServiceCtx(
Switch device,
KProcess process,
- IMemoryManager memory,
+ MemoryManager memory,
KThread thread,
KClientSession session,
IpcMessage request,