mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-23 20:33:05 +00:00
Also print the numeric -O flag which would enable an optimization when listing optimizations via -Ohelp
This commit is contained in:
parent
e1fe6cff54
commit
17029ba695
1 changed files with 1 additions and 1 deletions
2
main.c
2
main.c
|
@ -378,7 +378,7 @@ static bool options_parse(int argc, char **argv) {
|
|||
con_out("Possible optimizations:\n");
|
||||
for (itr = 0; itr < COUNT_OPTIMIZATIONS; ++itr) {
|
||||
util_strtononcmd(opts_opt_list[itr].name, buffer, sizeof(buffer));
|
||||
con_out(" -O%s\n", buffer);
|
||||
con_out(" -O%-20s (-O%u)\n", buffer, opts_opt_oflag[itr]);
|
||||
}
|
||||
exit(0);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue