mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-25 17:12:21 -05:00
misc: chore: Use explicit types in Memory project
This commit is contained in:
@@ -118,7 +118,7 @@ namespace Ryujinx.Memory
|
||||
{
|
||||
int copySize = (int)Math.Min(MaxChunkSize, size - subOffset);
|
||||
|
||||
using var writableRegion = GetWritableRegion(va + subOffset, copySize);
|
||||
using WritableRegion writableRegion = GetWritableRegion(va + subOffset, copySize);
|
||||
|
||||
writableRegion.Memory.Span.Fill(value);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user