mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-18 16:32:23 -05: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