mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
No release build console softlock when starting time attack (resolves #1281)
This commit is contained in:
parent
f29ed06e92
commit
5a0cd87fc4
1 changed files with 4 additions and 0 deletions
|
|
@ -21,6 +21,7 @@
|
|||
#include "../s_sound.h" // S_StartSound
|
||||
#include "../z_zone.h" // Z_StrDup/Z_Free
|
||||
#include "../m_cond.h"
|
||||
#include "../console.h" // CON_ToggleOff
|
||||
|
||||
struct timeattackmenu_s timeattackmenu;
|
||||
|
||||
|
|
@ -616,6 +617,9 @@ void M_StartTimeAttack(INT32 choice)
|
|||
modeprefix = "spb-";
|
||||
}
|
||||
|
||||
// DON'T SOFTLOCK
|
||||
CON_ToggleOff();
|
||||
|
||||
// Still need to reset devmode
|
||||
cht_debug = 0;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue