diff options
author | taw27 <taw27@84d2e878-0bd5-11dd-ad15-13eda11d74c5> | 2008-06-04 17:35:45 +0000 |
---|---|---|
committer | taw27 <taw27@84d2e878-0bd5-11dd-ad15-13eda11d74c5> | 2008-06-04 17:35:45 +0000 |
commit | 16e42ddffb21eb3a7f019db7c39c99d69aeb0270 (patch) | |
tree | 348bf5c94a6714c0e9fb59fb1043dcd9e2337c3b /src | |
parent | 997a3c23ad0175f82feb37f400762ecf08545e2c (diff) |
Help message
git-svn-id: svn://cook.msm.cam.ac.uk:745/thrust3d/thrust3d@72 84d2e878-0bd5-11dd-ad15-13eda11d74c5
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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"); |