mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-07 13:55:47 +00:00
misc: chore: Use explicit types in HLE project
This commit is contained in:
@@ -105,7 +105,7 @@ namespace Ryujinx.HLE.HOS.Kernel.Memory
|
||||
_blocksCount = blockShifts.Length;
|
||||
_blocks = new Block[_memoryBlockPageShifts.Length];
|
||||
|
||||
var currBitmapStorage = new ArraySegment<ulong>(new ulong[CalculateManagementOverheadSize(size, blockShifts)]);
|
||||
ArraySegment<ulong> currBitmapStorage = new ArraySegment<ulong>(new ulong[CalculateManagementOverheadSize(size, blockShifts)]);
|
||||
|
||||
for (int i = 0; i < blockShifts.Length; i++)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user