mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 17:22:12 +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:
|
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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue