0
0
mirror of https://git.743378673.xyz/MeloNX/MeloNX.git synced 2025-05-13 08:24:45 +00:00

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

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