Add support for NAND save "DS Guide" card

This commit is contained in:
Lillian Skinner 2024-09-13 22:48:09 -04:00 committed by GitHub
parent 4e55323798
commit 9cd086a194
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -296,6 +296,8 @@ u32 cardNandGetSaveSize(void) {
return 16 << 20; // 16MByte - WarioWare D.I.Y.
case 0x004B5355: // 'USK'
return 64 << 20; // 64MByte - Face Training
case 0x00444755: // 'UGD'
return 128 << 20; // 128MByte - DS Guide
}
return 0;