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
Tags
1 merge request!2355fix newer versions of mixerx
Pipeline #1634 passed
......@@ -952,7 +952,7 @@ boolean CON_Responder(event_t *ev)
if (modeattacking || metalrecording || marathonmode)
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
return true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment