Skip to content

Commit

Permalink
Fixed parasol help information
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-manias committed Apr 28, 2024
1 parent aa2cd7b commit 93109ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/launcher/parasol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,9 @@ static const char glHelp[] = {
The following parameters can be used when executing script files:\n\
\n\
--procedure [n] The name of a procedure to execute.\n\
--target [n] The name of an existing object that the script will target for hosting. Used in multi-tasking\n\
environments.\n\
--time Print the amount of time that it took to execute the program.\n\
\n\
--log-api Activates run-time log messages at API level.\n\
--log-info Activates run-time log messages at INFO level.\n\
--log-error Activates run-time log messages at ERROR level.\n"
};
Expand Down Expand Up @@ -76,6 +75,7 @@ static ERR process_args(void)
glTime = true;
}
else if (StrMatch(args[i], "--relaunch") IS ERR::Okay) {
// Internal argument to detect relaunching at an altered security level
glRelaunched = true;
}
else if (StrMatch(args[i], "--procedure") IS ERR::Okay) {
Expand Down

0 comments on commit 93109ad

Please sign in to comment.