mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-20 04:05:46 +00:00
misc: chore: Fix object creation in HLE project
This commit is contained in:
@@ -143,7 +143,7 @@ namespace Ryujinx.HLE.HOS.Kernel.Memory
|
||||
bool shouldFillPages,
|
||||
byte fillValue)
|
||||
{
|
||||
using KScopedPageList scopedPageList = new KScopedPageList(Context.MemoryManager, pageList);
|
||||
using KScopedPageList scopedPageList = new(Context.MemoryManager, pageList);
|
||||
|
||||
ulong currentVa = address;
|
||||
|
||||
@@ -188,7 +188,7 @@ namespace Ryujinx.HLE.HOS.Kernel.Memory
|
||||
}
|
||||
}
|
||||
|
||||
using KScopedPageList scopedPageList = new KScopedPageList(Context.MemoryManager, pageList);
|
||||
using KScopedPageList scopedPageList = new(Context.MemoryManager, pageList);
|
||||
|
||||
foreach (KPageNode pageNode in pageList)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user