Show debug help screen options in release build as well as some might be actually useful for players

This commit is contained in:
zicodxx 2008-10-30 10:45:13 +00:00
parent 6b60c44459
commit d53a475a58
3 changed files with 21 additions and 4 deletions

View file

@ -3,6 +3,7 @@ D1X-Rebirth Changelog
20081030
--------
INSTALL.txt, README.txt: Docs update: Infos about Jukebox over SDL_mixer, SDL_mixer is not experimental anymore, yet another .de->.com change
d1x.ini, main/inferno.c: Show debug help screen options in release build as well as some might be actually useful for players
20081029
--------

19
d1x.ini
View file

@ -42,3 +42,22 @@
;-ip_baseport <n> Use <p> as offset from normal port
;-ip_relay Relay players with closed port over host (increases traffic and lag)
;-ip_hostaddr <n> Use <n> as host ip address
Debug (use only if you know what you're doing):
;-debug Enable very verbose output
;-verbose Shows initialization steps for tech support
;-norun Bail out after initialization
;-renderstats Enable renderstats info by default
;-text <s> Specify alternate .tex file
;-tmap <s> Select texmapper to use (c,fp,quad,i386,pent,ppro)
;-showmeminfo Show memory statistics
;-nodoublebuffer Disable Doublebuffering
;-bigpig Use uncompressed RLE bitmaps
;-gl_oldtexmerge Use old texmerge, uses more ram, but _might_ be a bit faster
;-gl_16bpp Use 16Bpp Color Depth
;-gl_intensity4_ok <n> Override DbgGlIntensity4Ok - Default: 1
;-gl_luminance4_alpha4_ok <n> Override DbgGlLuminance4Alpha4Ok - Default: 1
;-gl_rgba2_ok <n> Override DbgGlRGBA2Ok - Default: 1
;-gl_readpixels_ok <n> Override DbgGlReadPixelsOk - Default: 1
;-gl_gettexlevelparam_ok <n>Override DbgGlGetTexLevelParamOk - Default: 1

View file

@ -185,8 +185,7 @@ void show_commandline_help()
printf( " -nobm %s\n", "Don't load BITMAPS.TBL and BITMAPS.BIN - use internal data");
#endif // EDITOR
#ifndef NDEBUG
printf( "\n Debug:\n\n");
printf( "\n Debug (use only if you know what you're doing):\n\n");
printf( " -debug %s\n", "Enable very verbose output");
printf( " -verbose %s\n", "Shows initialization steps for tech support");
printf( " -norun %s\n", "Bail out after initialization");
@ -209,8 +208,6 @@ void show_commandline_help()
printf( " -asyncblit %s\n", "Use queued blits over SDL. Can speed up rendering");
#endif // OGL
#endif // NDEBUG
printf( "\n Help:\n\n");
printf( " -help, -h, -?, ? %s\n", "View this help screen");
printf( "\n\n");