aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Nv/NvMemoryAllocator.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.HLE/HOS/Services/Nv/NvMemoryAllocator.cs')
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Nv/NvMemoryAllocator.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Ryujinx.HLE/HOS/Services/Nv/NvMemoryAllocator.cs b/src/Ryujinx.HLE/HOS/Services/Nv/NvMemoryAllocator.cs
index 341b5e57..66c953a2 100644
--- a/src/Ryujinx.HLE/HOS/Services/Nv/NvMemoryAllocator.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Nv/NvMemoryAllocator.cs
@@ -20,10 +20,10 @@ namespace Ryujinx.HLE.HOS.Services.Nv
// Key --> Start Address of Region
// Value --> End Address of Region
- private readonly TreeDictionary<ulong, ulong> _tree = new TreeDictionary<ulong, ulong>();
+ private readonly TreeDictionary<ulong, ulong> _tree = new();
- private readonly Dictionary<ulong, LinkedListNode<ulong>> _dictionary = new Dictionary<ulong, LinkedListNode<ulong>>();
- private readonly LinkedList<ulong> _list = new LinkedList<ulong>();
+ private readonly Dictionary<ulong, LinkedListNode<ulong>> _dictionary = new();
+ private readonly LinkedList<ulong> _list = new();
public NvMemoryAllocator()
{