Prevent Time Attack level handler always beeping.

This commit is contained in:
toaster 2019-10-12 09:42:03 -04:00
parent 6fd645ef27
commit a2a5983256

View file

@ -8419,7 +8419,6 @@ static void M_HandleTimeAttackLevelSelect(INT32 choice)
case KEY_DOWNARROW: case KEY_DOWNARROW:
M_NextOpt(); M_NextOpt();
break; break;
case KEY_UPARROW: case KEY_UPARROW:
M_PrevOpt(); M_PrevOpt();
break; break;
@ -8439,6 +8438,9 @@ static void M_HandleTimeAttackLevelSelect(INT32 choice)
noFurtherInput = true; noFurtherInput = true;
M_GoBack(0); M_GoBack(0);
return; return;
default:
return;
} }
S_StartSound(NULL, sfx_menu1); S_StartSound(NULL, sfx_menu1);
} }