Reduce temporary copy/fill buffer size (#1926)

This commit is contained in:
gdkchan 2021-01-18 23:31:15 -03:00 committed by GitHub
parent 1364f36161
commit 734747ae58
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -15,7 +15,7 @@ namespace Ryujinx.Memory
void Fill(ulong va, ulong size, byte value)
{
const int MaxChunkSize = 1 << 30;
const int MaxChunkSize = 1 << 24;
for (ulong subOffset = 0; subOffset < size; subOffset += MaxChunkSize)
{