mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-20 04:05:46 +00:00
misc: chore: Fix object creation in Memory project
This commit is contained in:
@@ -173,7 +173,7 @@ namespace Ryujinx.Memory.Range
|
||||
private List<T> GetList()
|
||||
{
|
||||
List<RangeNode<ulong, T>> items = _items.AsList();
|
||||
List<T> result = new List<T>();
|
||||
List<T> result = new();
|
||||
|
||||
foreach (RangeNode<ulong, T> item in items)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user