mirror of
https://github.com/rvtr/GodMode9i.git
synced 2025-11-02 00:11:07 -04:00
Fix always blocking SPI saves over 1 MiB
Noticed this right after marking the PR ready for review lol
This commit is contained in:
parent
bec149de03
commit
836c30e182
@ -777,11 +777,11 @@ void ndsCardDump(void) {
|
||||
allowedOptions.push_back(DumpOption::rom);
|
||||
allowedOptions.push_back(DumpOption::romTrimmed);
|
||||
allowedBitfield |= DumpOption::rom | DumpOption::romTrimmed;
|
||||
|
||||
nandSave = cardNandGetSaveSize() != 0;
|
||||
}
|
||||
|
||||
nandSave = cardNandGetSaveSize() != 0;
|
||||
|
||||
if((spiSave && cardEepromGetSizeFixed() <= (1 << 20)) || (nandSave && (sdMounted || flashcardMounted))) {
|
||||
if((spiSave && (sdMounted || flashcardMounted || cardEepromGetSizeFixed() <= (1 << 20))) || (nandSave && (sdMounted || flashcardMounted))) {
|
||||
allowedOptions.push_back(DumpOption::save);
|
||||
allowedBitfield |= DumpOption::save;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user