rejected -nod2xmenu feature

This commit is contained in:
zicodxx 2006-07-16 19:39:56 +00:00
parent 8dac6902ef
commit 633efcaee7
3 changed files with 1 additions and 6 deletions

View file

@ -26,7 +26,6 @@
**************
***Settings***
**************
;-nod2xmenu ;Disables D2X options menu for a more nostalgic experience;
;-JoyPolled ;Poll joystick w/ counter. Use for Windows, OS/2
;-JoyBios ;Use the system BIOS for joystick.
;-JoyNice ;Joystick poller allows interrupts to occur

View file

@ -219,7 +219,6 @@ void print_commandline_help()
printf( "\n");
#endif
printf( " D2X Options:\n\n");
printf( " -nod2xmenu %s\n", "Disables D2X options menu for a more nostalgic experience");
printf( " -noredundancy %s\n", "Do not send messages when picking up redundant items in multi");
printf( " -shortpackets %s\n", "Set shortpackets to default as on");
#ifdef OGL // currently only does anything on ogl build, so don't advertise othewise.

View file

@ -1329,10 +1329,7 @@ void do_options_menu()
m[12].type = NM_TYPE_MENU; m[12].text="D2X options...";
if (FindArg("-nod2xmenu"))
i = newmenu_do1( NULL, TXT_OPTIONS, sizeof(m)/sizeof(*m) -1, m, options_menuset, i );
else
i = newmenu_do1( NULL, TXT_OPTIONS, sizeof(m)/sizeof(*m), m, options_menuset, i );
i = newmenu_do1( NULL, TXT_OPTIONS, sizeof(m)/sizeof(*m), m, options_menuset, i );
switch(i) {
case 0: do_sound_menu(); break;