61fd6e918b7a4c23623160ff1bef59cc4da5677d
in the code ( init.c:789 ) there is
case 'b':
if (!optarg) {
fprintf(stderr, "Please specify what to benchmark.\n");
exit(1);
}
but it seems this "Please specify what to benchmark" message is never shown.
I assume it should be shown when I just run "freedroidRPG -b", but it isn't.
Running -b foo shows:
Unrecognized test foo. Existing tests are:
text
dialog
loadship
loadgame
savegame
dynarray
mapgen
leveltest
this should also be done for only -b, if no further arguments are given.
|