Skip to content

Commit

Permalink
Continue If Bad Saves Found
Browse files Browse the repository at this point in the history
Continue if bad saves found on internal\external storage instead of hard failing.
  • Loading branch information
slinga-homebrew authored Feb 20, 2021
1 parent d9c6ef8 commit 21bb498
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions backup-saturn.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ int saturnListSaveFiles(int backupDevice, PSAVES saves, unsigned int numSaves)
result = jo_backup_get_file_info(backupDevice, filename, comment, &language, &date, &numBytes, &numBlocks);
if(result == false)
{
sgc_core_error("Failed to read file size!!");
return -1;
//sgc_core_error("Failed to read file size!!");
continue;
}

// fill out the SAVES structure
Expand Down
2 changes: 1 addition & 1 deletion main.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include "bup_header.h"

// program version, keep this length to avoid having to resize strings
#define VERSION "3.6.0"
#define VERSION "3.6.1"

// program states
#define STATE_UNINITIALIZED 0
Expand Down

0 comments on commit 21bb498

Please sign in to comment.