diff --git a/retail/bootloaderi/source/arm7/main.arm7.c b/retail/bootloaderi/source/arm7/main.arm7.c index 3ae0e22aa..2e9b756e0 100644 --- a/retail/bootloaderi/source/arm7/main.arm7.c +++ b/retail/bootloaderi/source/arm7/main.arm7.c @@ -1478,7 +1478,7 @@ int arm7_main(void) { } if (gameOnFlashcard || !isDSiWare) { extern u32 clusterCacheSize; - clusterCacheSize = 0x14000; + clusterCacheSize = 0x10000; if (dsiModeConfirmed && ROMsupportsDsiMode(&dsiHeaderTemp.ndshdr)) { clusterCacheSize = 0x2000; } @@ -1589,13 +1589,13 @@ int arm7_main(void) { extern u32* lastClusterCacheUsed; extern u32 clusterCache; - u32 add = (moduleParams->sdk_version >= 0x2008000 || moduleParams->sdk_version == 0x20029A8) ? 0xC4000 : 0xE8000; // 0x027C4000 : 0x027E8000 - tonccpy((char*)0x02700000+add, (char*)0x02700000, 0x14000); // Move FAT table cache elsewhere + u32 add = (moduleParams->sdk_version >= 0x2008000 || moduleParams->sdk_version == 0x20029A8) ? 0xC8000 : 0xE8000; // 0x027C8000 : 0x027E8000 + tonccpy((char*)0x02700000+add, (char*)0x02700000, 0x10000); // Move FAT table cache elsewhere romFile->fatTableCache = (u32*)((u32)romFile->fatTableCache+add); savFile->fatTableCache = (u32*)((u32)savFile->fatTableCache+add); lastClusterCacheUsed = (u32*)((u32)lastClusterCacheUsed+add); clusterCache += add; - toncset((char*)0x02700000, 0, 0x14000); + toncset((char*)0x02700000, 0, 0x10000); } //if (gameOnFlashcard || !isDSiWare || !dsiWramAccess) {