fix spurious warning in exporting battery save memory even when it works (fixes #325)

This commit is contained in:
zeromus 2020-04-27 20:28:56 -04:00
parent 7fdf800b58
commit 55253504e3
1 changed files with 1 additions and 1 deletions

View File

@ -231,5 +231,5 @@ bool exportSave(HWND hwnd, HINSTANCE hAppInst)
if (ofn.nFilterIndex == 2) strcat(SavFName, "*");
return !MMU_new.backupDevice.exportData(SavFName);
return MMU_new.backupDevice.exportData(SavFName);
}