lime: Help text now omits references to the SDL frontend if disabled
Some checks are pending
lime-build / source (push) Waiting to run
lime-build / linux (appimage) (push) Waiting to run
lime-build / linux (fresh) (push) Waiting to run
lime-build / macos (arm64) (push) Waiting to run
lime-build / macos (x86_64) (push) Waiting to run
lime-build / macos-universal (push) Blocked by required conditions
lime-build / windows (msvc) (push) Waiting to run
lime-build / windows (msys2) (push) Waiting to run
lime-build / android (push) Waiting to run
lime-build / release (push) Blocked by required conditions
lime-format / clang-format (push) Waiting to run
lime-transifex / transifex (push) Waiting to run

This commit is contained in:
OpenSauce04 2024-10-30 11:05:24 +00:00 committed by OpenSauce
parent 43c93cccb0
commit 8bbf18f56b

View file

@ -19,11 +19,14 @@ constexpr char help_string[] =
"-r, --movie-record [path] Record a TAS movie to the given file path\n" "-r, --movie-record [path] Record a TAS movie to the given file path\n"
"-a, --movie-record-author [author] Set the author for the recorded TAS movie (to be used " "-a, --movie-record-author [author] Set the author for the recorded TAS movie (to be used "
"alongside --movie-record)\n" "alongside --movie-record)\n"
#ifdef ENABLE_SDL2_FRONTEND
"-n, --no-gui Use the lightweight SDL frontend instead of the usual Qt " "-n, --no-gui Use the lightweight SDL frontend instead of the usual Qt "
"frontend\n" "frontend\n"
// TODO: Move -m outside of this check when it is implemented in Qt frontend
"-m, --multiplayer [nick:password@address:port] Nickname, password, address and port for " "-m, --multiplayer [nick:password@address:port] Nickname, password, address and port for "
"multiplayer\n" "multiplayer (currently only usable with SDL frontend)\n"
#endif
"-v, --version Output version information and exit\n" "-v, --version Output version information and exit\n"
"-w, --windowed Start in windowed mode"; "-w, --windowed Start in windowed mode";
} } // namespace Common