Skip to content

Commit

Permalink
Change argument to --paths-from-datadir
Browse files Browse the repository at this point in the history
  • Loading branch information
tobbi committed Aug 30, 2023
1 parent 7d7268d commit 794bfba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/supertux/command_line_arguments.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ CommandLineArguments::print_help(const char* arg0) const
<< _("Game Options:") << "\n"
<< _(" --edit-level Open given level in editor") << "\n"
<< _(" --resave Loads given level and saves it") << "\n"
<< _(" --from-datadir Indicates that the LEVELFILE path is relative to the data dir. Only used if --edit-level is specified") << "\n"
<< _(" --paths-from-datadir Indicates that the paths are relative to the data dir. Only used if --edit-level is specified") << "\n"
<< _(" --show-fps Display framerate in levels") << "\n"
<< _(" --no-show-fps Do not display framerate in levels") << "\n"
<< _(" --show-pos Display player's current position") << "\n"
Expand Down Expand Up @@ -393,7 +393,7 @@ CommandLineArguments::parse_args(int argc, char** argv)
{
editor = true;
}
else if (arg == "--from-datadir")
else if (arg == "--paths-from-datadir")
{
from_datadir = true;
}
Expand Down

0 comments on commit 794bfba

Please sign in to comment.