aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Kernel/KMemoryArrangeRegion.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/Kernel/KMemoryArrangeRegion.cs')
-rw-r--r--Ryujinx.HLE/HOS/Kernel/KMemoryArrangeRegion.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/Ryujinx.HLE/HOS/Kernel/KMemoryArrangeRegion.cs b/Ryujinx.HLE/HOS/Kernel/KMemoryArrangeRegion.cs
index c76cf42e..7d66e291 100644
--- a/Ryujinx.HLE/HOS/Kernel/KMemoryArrangeRegion.cs
+++ b/Ryujinx.HLE/HOS/Kernel/KMemoryArrangeRegion.cs
@@ -2,15 +2,15 @@ namespace Ryujinx.HLE.HOS.Kernel
{
struct KMemoryArrangeRegion
{
- public ulong Address { get; }
- public ulong Size { get; }
+ public ulong Address { get; private set; }
+ public ulong Size { get; private set; }
public ulong EndAddr => Address + Size;
- public KMemoryArrangeRegion(ulong address, ulong size)
+ public KMemoryArrangeRegion(ulong Address, ulong Size)
{
- Address = address;
- Size = size;
+ this.Address = Address;
+ this.Size = Size;
}
}
} \ No newline at end of file