This commit is contained in:
jacekpoz 2024-04-20 14:11:53 +02:00
parent 79441b46fd
commit 3d847e9da2
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8

View file

@ -69,13 +69,13 @@ int main(int argc, char *argv[]) {
} }
if (std::string(argv[i]) == "-h" || std::string(argv[i]) == "--help") { if (std::string(argv[i]) == "-h" || std::string(argv[i]) == "--help") {
std::cout << PNAME << " [" << VERSION << "]\n"; std::cout << PNAME << " [" << VERSION << "]\n"
std::cout << "\n"; << "\n"
std::cout << "OPTIONS\n"; << "OPTIONS\n"
std::cout << "\t-h, --help\t\t\t\tdisplays this help text\n"; << "\t-h, --help\t\t\t\tdisplays this help text\n"
std::cout << "\t-o, --osu </path/to/osu>\t\tpath to osu directory (defaults to ~/.osu/drive_c/osu)\n"; << "\t-o, --osu </path/to/osu>\t\tpath to osu directory (defaults to ~/.osu/drive_c/osu)\n"
std::cout << "\t-s, --skin <skin_name>\t\t\tskin name\n"; << "\t-s, --skin <skin_name>\t\t\tskin name\n"
std::cout << "\t-b, --beatmap </path/to/beatmap>\tplay beatmap\n"; << "\t-b, --beatmap </path/to/beatmap>\tplay beatmap\n";
std::exit(EXIT_SUCCESS); std::exit(EXIT_SUCCESS);
} }
} }