mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Prevent Time Attack level handler always beeping.
This commit is contained in:
parent
595d0c80c7
commit
a99fb74d4a
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…
Add table
Reference in a new issue