@@ -146,7 +146,6 @@ Flag exe_params[] =
146146 { " -fb_explosions" , " Enable Framebuffer Shockwaves" , true , EASY_ALL_ON, EASY_DEFAULT, " Graphics" , " http://www.hard-light.net/wiki/index.php/Command-Line_Reference#-fb_explosions" , },
147147 { " -no_deferred" , " Disable Deferred Lighting" , true , EASY_DEFAULT_MEM, EASY_DEFAULT, " Graphics" , " http://www.hard-light.net/wiki/index.php/Command-Line_Reference#-no_deferred" },
148148 { " -enable_shadows" , " Enable Shadows" , true , EASY_MEM_ALL_ON, EASY_DEFAULT, " Graphics" , " http://www.hard-light.net/wiki/index.php/Command-Line_Reference#-no_shadows" },
149- { " -img2dds" , " Compress non-compressed images" , true , 0 , EASY_DEFAULT, " Game Speed" , " http://www.hard-light.net/wiki/index.php/Command-Line_Reference#-img2dds" , },
150149 { " -no_vsync" , " Disable vertical sync" , true , 0 , EASY_DEFAULT, " Game Speed" , " http://www.hard-light.net/wiki/index.php/Command-Line_Reference#-no_vsync" , },
151150 { " -cache_bitmaps" , " Cache bitmaps between missions" , true , 0 , EASY_DEFAULT_MEM, " Game Speed" , " http://www.hard-light.net/wiki/index.php/Command-Line_Reference#-cache_bitmaps" , },
152151
@@ -345,12 +344,10 @@ int Cmdline_no_deferred_lighting = 0;
345344
346345// Game Speed related
347346cmdline_parm cache_bitmaps_arg (" -cache_bitmaps" , NULL , AT_NONE); // Cmdline_cache_bitmaps
348- cmdline_parm img2dds_arg (" -img2dds" , NULL , AT_NONE); // Cmdline_img2dds
349347cmdline_parm no_fpscap (" -no_fps_capping" , " Don't limit frames-per-second" , AT_NONE); // Cmdline_NoFPSCap
350348cmdline_parm no_vsync_arg (" -no_vsync" , NULL , AT_NONE); // Cmdline_no_vsync
351349
352350int Cmdline_cache_bitmaps = 0 ; // caching of bitmaps between missions (faster loads, can hit swap on reload with <512 Meg RAM though) - taylor
353- int Cmdline_img2dds = 0 ;
354351int Cmdline_NoFPSCap = 0 ; // Disable FPS capping - kazan
355352int Cmdline_no_vsync = 0 ;
356353
@@ -1554,9 +1551,6 @@ bool SetCmdlineParams()
15541551 Cmdline_no_di_mouse = 1 ;
15551552 }
15561553
1557- if ( img2dds_arg.found () )
1558- Cmdline_img2dds = 1 ;
1559-
15601554 if ( glow_arg.found () )
15611555 Cmdline_glow = 0 ;
15621556
0 commit comments