mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-05-10 02:41:49 +00:00
Only allow ESC and non-keyboard keys to abort connection
This commit is contained in:
parent
3c35f40572
commit
8f05182530
1 changed files with 2 additions and 2 deletions
|
|
@ -2076,8 +2076,8 @@ static boolean CL_ServerConnectionTicker(boolean viams, const char *tmpsave, tic
|
||||||
|
|
||||||
I_OsPolling();
|
I_OsPolling();
|
||||||
key = I_GetKey();
|
key = I_GetKey();
|
||||||
// Any key can be used to abort network connection
|
// Only ESC and non-keyboard keys abort connection
|
||||||
if (key != KEY_NULL)
|
if (key == KEY_ESCAPE || key >= KEY_MOUSE1)
|
||||||
{
|
{
|
||||||
CONS_Printf(M_GetText("Network game synchronization aborted.\n"));
|
CONS_Printf(M_GetText("Network game synchronization aborted.\n"));
|
||||||
// M_StartMessage(M_GetText("Network game synchronization aborted.\n\nPress ESC\n"), NULL, MM_NOTHING);
|
// M_StartMessage(M_GetText("Network game synchronization aborted.\n\nPress ESC\n"), NULL, MM_NOTHING);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue