mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-01 12:46:25 +02:00
misc: chore: Fix object creation everywhere else
This commit is contained in:
parent
9e1a13b2ee
commit
c7db948fb3
5 changed files with 12 additions and 12 deletions
|
@ -85,7 +85,7 @@ namespace Ryujinx.Tests.Memory
|
|||
|
||||
IEnumerable<MemoryRange> IVirtualMemoryManager.GetPhysicalRegions(ulong va, ulong size)
|
||||
{
|
||||
return NoMappings ? Array.Empty<MemoryRange>() : new MemoryRange[] { new MemoryRange(va, size) };
|
||||
return NoMappings ? Array.Empty<MemoryRange>() : new MemoryRange[] { new(va, size) };
|
||||
}
|
||||
|
||||
public bool IsMapped(ulong va)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue