DS: Return false if null save load attempted

This commit is contained in:
Vicki Pfau 2020-07-22 22:19:45 -07:00
parent 1d377450cb
commit 614857520f
1 changed files with 1 additions and 1 deletions

View File

@ -505,7 +505,7 @@ bool DSLoadROM(struct DS* ds, struct VFile* vf) {
bool DSLoadSave(struct DS* ds, struct VFile* sav) { bool DSLoadSave(struct DS* ds, struct VFile* sav) {
DSSlot1SPIInit(ds, sav); DSSlot1SPIInit(ds, sav);
return true; return sav;
} }
bool DSIsROM(struct VFile* vf) { bool DSIsROM(struct VFile* vf) {