Skip to content

Commit

Permalink
Fix handling of MIA files & complete sets.
Browse files Browse the repository at this point in the history
  • Loading branch information
0-wiz-0 committed Jul 19, 2024
1 parent 3985d3d commit e0b0214
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fix.cc
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ int fix_game(Game *game, const GameArchives archives, Result *result) {
}
}

if (!configuration.complete_games_only || result->game == GS_CORRECT || result->game == GS_FIXABLE) {
if (!configuration.complete_games_only || result->game == GS_CORRECT || result->game == GS_CORRECT_MIA || result->game == GS_FIXABLE) {
ret |= fix_files(game, filetype, archive, result, garbage.get());
}
else {
Expand Down

0 comments on commit e0b0214

Please sign in to comment.