aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Homebrew.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/Homebrew.cs')
-rw-r--r--Ryujinx.HLE/HOS/Homebrew.cs16
1 files changed, 8 insertions, 8 deletions
diff --git a/Ryujinx.HLE/HOS/Homebrew.cs b/Ryujinx.HLE/HOS/Homebrew.cs
index 8e54f82c..dca02d91 100644
--- a/Ryujinx.HLE/HOS/Homebrew.cs
+++ b/Ryujinx.HLE/HOS/Homebrew.cs
@@ -8,7 +8,7 @@ namespace Ryujinx.HLE.HOS
public const string TemporaryNroSuffix = ".ryu_tmp.nro";
// http://switchbrew.org/index.php?title=Homebrew_ABI
- public static void WriteHbAbiData(IMemoryManager memory, long position, int mainThreadHandle, string switchPath)
+ public static void WriteHbAbiData(MemoryManager memory, long position, int mainThreadHandle, string switchPath)
{
// MainThreadHandle.
WriteConfigEntry(memory, ref position, 1, 0, mainThreadHandle);
@@ -31,12 +31,12 @@ namespace Ryujinx.HLE.HOS
}
private static void WriteConfigEntry(
- IMemoryManager memory,
- ref long position,
- int key,
- int flags = 0,
- long value0 = 0,
- long value1 = 0)
+ MemoryManager memory,
+ ref long position,
+ int key,
+ int flags = 0,
+ long value0 = 0,
+ long value1 = 0)
{
memory.WriteInt32(position + 0x00, key);
memory.WriteInt32(position + 0x04, flags);
@@ -46,7 +46,7 @@ namespace Ryujinx.HLE.HOS
position += 0x18;
}
- public static string ReadHbAbiNextLoadPath(IMemoryManager memory, long position)
+ public static string ReadHbAbiNextLoadPath(MemoryManager memory, long position)
{
string fileName = null;