Skip to content

Commit a1d4647

Browse files
committed
Remove -img2dds
1 parent a4043fb commit a1d4647

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

code/cmdline/cmdline.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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
347346
cmdline_parm cache_bitmaps_arg("-cache_bitmaps", NULL, AT_NONE); // Cmdline_cache_bitmaps
348-
cmdline_parm img2dds_arg("-img2dds", NULL, AT_NONE); // Cmdline_img2dds
349347
cmdline_parm no_fpscap("-no_fps_capping", "Don't limit frames-per-second", AT_NONE); // Cmdline_NoFPSCap
350348
cmdline_parm no_vsync_arg("-no_vsync", NULL, AT_NONE); // Cmdline_no_vsync
351349

352350
int 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;
354351
int Cmdline_NoFPSCap = 0; // Disable FPS capping - kazan
355352
int 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

code/cmdline/cmdline.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ extern int Cmdline_no_deferred_lighting;
8383

8484
// Game Speed related
8585
extern int Cmdline_cache_bitmaps;
86-
extern int Cmdline_img2dds;
8786
extern int Cmdline_NoFPSCap;
8887
extern int Cmdline_no_vsync;
8988

0 commit comments

Comments
 (0)