aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJustin Berger <j.david.berger@gmail.com>2018-03-24 10:13:23 -0600
committerJustin Berger <j.david.berger@gmail.com>2018-03-24 10:13:23 -0600
commitd5c42c4951261c401c5f9148ce2d6bb1402ce75b (patch)
tree1ff58058d0810f2f82ecc8f3882b9f68f8748409 /src
parentb45e58d9f75747e8727ac6cd0594a921e945c7e2 (diff)
downloadlibsurvive-d5c42c4951261c401c5f9148ce2d6bb1402ce75b.tar.gz
libsurvive-d5c42c4951261c401c5f9148ce2d6bb1402ce75b.tar.bz2
Some minor fixups around command line processing
Diffstat (limited to 'src')
-rw-r--r--src/survive.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/survive.c b/src/survive.c
index 1786d45..807e82f 100644
--- a/src/survive.c
+++ b/src/survive.c
@@ -177,7 +177,10 @@ SurviveContext *survive_init_internal(int argc, char *const *argv) {
fprintf(stderr, " -p [poser] - use a specific defaultposer.\n");
fprintf(stderr, " -l [lighthouse count] - use a specific number of lighthoses.\n");
fprintf(stderr, " -c [config file] - set config file\n");
- fprintf(stderr, " -p [lighthouse count] - use a specific number of lighthoses.\n");
+ fprintf(stderr, " --record [log file] - Write all events to the given record file.\n");
+ fprintf(stderr, " --playback [log file] - Read events from the given file instead of USB devices.\n");
+ fprintf(stderr, " --playback-factor [f] - Time factor of playback -- 1 is run at the same timing as "
+ "original, 0 is run as fast as possible.\n");
return 0;
}