mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-02-04 15:31:05 +00:00
ESC rebind works on both bound keys
This commit is contained in:
parent
a223375cc0
commit
1a37335675
1 changed files with 1 additions and 1 deletions
|
@ -2547,7 +2547,7 @@ boolean M_Responder(event_t *ev)
|
||||||
|
|
||||||
if (ch == -1)
|
if (ch == -1)
|
||||||
return false;
|
return false;
|
||||||
else if (ch == gamecontrol[gc_systemmenu][0]) // allow remappable ESC key
|
else if (ch == gamecontrol[gc_systemmenu][0] || ch == gamecontrol[gc_systemmenu][1]) // allow remappable ESC key
|
||||||
ch = KEY_ESCAPE;
|
ch = KEY_ESCAPE;
|
||||||
|
|
||||||
// F-Keys
|
// F-Keys
|
||||||
|
|
Loading…
Reference in a new issue