0
0
Fork 0
mirror of https://git.do.srb2.org/STJr/SRB2.git synced 2025-04-18 16:30:58 +00:00

Merge branch 'pressing-two-keys-in-the-console-crashes-srb2' into 'next'

Pressing Ctrl+Backspace In An Empty Console Crashes SRB2

See merge request 
This commit is contained in:
SteelT 2021-01-07 16:32:51 -05:00
commit 4041e69fad

View file

@ -826,6 +826,12 @@ static void CON_InputDelSelection(void)
Lock_state();
if (!input_cur)
{
Unlock_state();
return;
}
if (input_cur > input_sel)
{
start = input_sel;