aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 16f448a..50e8a4d 100644
--- a/src/main.c
+++ b/src/main.c
@@ -99,12 +99,14 @@ int main(int argc, char *argv[]) {
}
case 'h' : {
- printf("Syntax: %s [-hvf] [-r <res>]\n\n", argv[0]);
+ printf("Syntax: %s [options]\n\n", argv[0]);
printf("Post-apocalyptic Jet Set Willy, set in a 3D nuclear power station.\n\n");
printf(" -h, --help Display this help message and exit.\n");
printf(" -v, --version Display version number and exit.\n");
printf(" -r, --resolution <res> Set display resolution. See below for possible values for <res>.\n");
- printf(" --disable-shaders Disable the use of OpenGL shaders (advanced).\n");
+ printf(" --disable-vbos Disable the use of vertex buffer objects (advanced).\n");
+ printf(" --disable-fbos Disable the use of framebuffer objects (advanced).\n");
+ printf(" --disable-shaders Disable the use of shaders (advanced).\n");
printf(" -f, --fullscreen Use the full screen.\n\n");
printf("Allowable values for <res> are as follows:\n\n");
printf("<res> Width Height\n");