Fix missing chunkSize

This commit is contained in:
Stossy11 2025-02-08 20:44:12 +11:00
parent c8db129402
commit 9c014e6f87
2 changed files with 0 additions and 2 deletions

View File

@ -62,8 +62,6 @@ namespace Ryujinx.Memory
return totalSize;
}
chunkSize /= 2;
int chunkCount = Math.Max(4, totalSize / DEFAULT_CHUNK_SIZE);
return (totalSize + chunkCount - 1) / chunkCount;
}