From 960c1ea7ad49657b3ffd12517b3c16ac946403ed Mon Sep 17 00:00:00 2001 From: Pk11 Date: Wed, 6 Oct 2021 14:11:48 -0500 Subject: [PATCH] Only dump 64 MiB for Face Training GBATEK says 82 MB RW section but now how much is save, nocash said 66 MB is save(?) on nesdev, but then melonDS makes a 64 MB save, since melonDS seems to work I'm just going to lower this to 64 MB incase going further can cause trouble. --- arm9/source/dumpOperations.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm9/source/dumpOperations.cpp b/arm9/source/dumpOperations.cpp index 9eb0dd9..550ed82 100644 --- a/arm9/source/dumpOperations.cpp +++ b/arm9/source/dumpOperations.cpp @@ -194,7 +194,7 @@ u32 cardNandGetSaveSize(void) { case 0x00524F55: // 'UOR' return 16 << 20; // 16MByte - WarioWare D.I.Y. case 0x004B5355: // 'USK' - return 82 << 20; // 82MByte - Face Training + return 64 << 20; // 64MByte - Face Training } return 0;