Skip to content
Snippets Groups Projects
Commit 2ef5ea86 authored by Lactozilla's avatar Lactozilla :speech_balloon:
Browse files

Don't toggle the console if shift is held

parent 1f65c550
Branches
No related tags found
No related merge requests found
...@@ -952,7 +952,7 @@ boolean CON_Responder(event_t *ev) ...@@ -952,7 +952,7 @@ boolean CON_Responder(event_t *ev)
if (modeattacking || metalrecording || marathonmode) if (modeattacking || metalrecording || marathonmode)
return false; return false;
if (key == gamecontrol[GC_CONSOLE][0] || key == gamecontrol[GC_CONSOLE][1]) if ((key == gamecontrol[GC_CONSOLE][0] || key == gamecontrol[GC_CONSOLE][1]) && !shiftdown)
{ {
if (consdown) // ignore repeat if (consdown) // ignore repeat
return true; return true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment