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 7d66e291..c76cf42e 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; private set; }
- public ulong Size { get; private set; }
+ public ulong Address { get; }
+ public ulong Size { get; }
public ulong EndAddr => Address + Size;
- public KMemoryArrangeRegion(ulong Address, ulong Size)
+ public KMemoryArrangeRegion(ulong address, ulong size)
{
- this.Address = Address;
- this.Size = Size;
+ Address = address;
+ Size = size;
}
}
} \ No newline at end of file