Don't switch to TWL Blowfish for NAND saves

This doesn't seem to fully fix Face Training, but it might help?

Force push because I decided to undo disabling face training saves so it can still be tested
This commit is contained in:
Pk11 2021-10-06 14:10:16 -05:00
parent bc4b0baf1f
commit 8e48ab82f6

View File

@ -547,7 +547,7 @@ void cardRead (u32 src, void* dest, bool nandSave)
portFlags | CARD_ACTIVATE | CARD_nRESET | CARD_BLK_SIZE(1),
dest, 0x200/sizeof(u32));
if (src > ndsHeader->romSize) {
if (src > ndsHeader->romSize && !(nandSave && src >= cardNandRwStart)) {
switchToTwlBlowfish(ndsHeader);
}
}