Skip to content

Commit

Permalink
Rename --list-mia to --mia-have per dillo
Browse files Browse the repository at this point in the history
  • Loading branch information
0-wiz-0 committed Nov 28, 2024
1 parent 805092d commit 4ba83ec
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docs/ckstatus.mdoc
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ runs
.Op Fl Fl config Ar file
.Op Fl Fl correct
.Op Fl h , Fl Fl help
.Op Fl Fl list-mia
.Op Fl Fl list-sets
.Op Fl Fl mia-have
.Op Fl Fl missing
.Op Fl Fl runs
.Op Fl Fl set Ar pattern
Expand Down Expand Up @@ -78,12 +78,12 @@ Read the configuration from
List all correct ROMs.
.It Fl h , Fl Fl help
Show a short help.
.It Fl Fl list-mia
List all games containing ROMs that are MIA according to the database.
.It Fl Fl list-sets
List all configured sets, for the
.Fl Fl set
option.
.It Fl Fl mia-have
List all games containing ROMs that are MIA according to the database.
.It Fl Fl missing
List all missing ROMs except those that are MIA according to the
database.
Expand Down
4 changes: 2 additions & 2 deletions src/ckstatus.cc
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
std::vector<Commandline::Option> ckstatus_options = {
Commandline::Option("all-missing", "list missing games"),
Commandline::Option("changes", "list changes between runs"), Commandline::Option("correct", "list correct games"),
Commandline::Option("list-mia", "list games containing files marked MIA"),
Commandline::Option("mia-have", "list games containing files marked MIA"),
Commandline::Option("missing", "list missing games not marked MIA"),
// Commandline::Option("run", "RUN", "use information from run RUN (default: latest)"),
Commandline::Option("runs", "list runs"), Commandline::Option("summary", "print summary")};
Expand Down Expand Up @@ -77,7 +77,7 @@ void CkStatus::global_setup(const ParsedCommandline& commandline) {
else if (option.name == "correct") {
specials.insert(CORRECT);
}
else if (option.name == "list-mia") {
else if (option.name == "mia-have") {
specials.insert(LIST_MIA);
}
else if (option.name == "missing") {
Expand Down

0 comments on commit 4ba83ec

Please sign in to comment.