mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 09:11:48 +00:00
Prevent Time Attack level handler always beeping.
This commit is contained in:
parent
6fd645ef27
commit
a2a5983256
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue