mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-30 12:56:25 +02:00
misc: chore: Use explicit types in Memory project
This commit is contained in:
parent
ac401034d7
commit
fe661dc750
14 changed files with 48 additions and 48 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue