Skip to content

Commit

Permalink
Remove redundant check
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-drexler committed Nov 19, 2023
1 parent 3ffb5a2 commit 2af4e57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Quake/keys.c
Original file line number Diff line number Diff line change
Expand Up @@ -1141,7 +1141,7 @@ void Key_Event (int key, qboolean down)
sprintf (cmd, "-%s %i\n", kb+1, key);
Cbuf_AddText (cmd);
}
if (key_dest == key_console && key == K_MOUSE1 && !down)
if (key_dest == key_console && key == K_MOUSE1)
Con_Click ();
return;
}
Expand Down

0 comments on commit 2af4e57

Please sign in to comment.