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