Skip to content

Commit

Permalink
Fix fixdat with mia.
Browse files Browse the repository at this point in the history
  • Loading branch information
dillof committed Jun 7, 2024
1 parent a52b8cc commit c546127
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Fixdat.cc
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ void Fixdat::write(const Game *game, const Result *result) {
if (failed) {
return;
}
if (result->game != GS_MISSING && result->game != GS_PARTIAL) {
if (result->game != GS_MISSING && result->game != GS_MISSING_MIA && result->game != GS_PARTIAL) {
return;
}

Expand Down

0 comments on commit c546127

Please sign in to comment.