diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/jake2/client/Key.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jake2/client/Key.java b/src/jake2/client/Key.java index d1c1fc8..087aec1 100644 --- a/src/jake2/client/Key.java +++ b/src/jake2/client/Key.java @@ -2,7 +2,7 @@ * Key.java * Copyright (C) 2003 * - * $Id: Key.java,v 1.6 2004-08-19 20:56:41 hzi Exp $ + * $Id: Key.java,v 1.7 2004-10-28 18:15:25 cawe Exp $ */ /* Copyright (C) 1997-2001 Id Software, Inc. @@ -321,7 +321,7 @@ public class Key extends Globals { shift_down = down; // console key is hardcoded, so the user can never unbind it - if (key == '#' || key == '~') { + if (key == '`' || key == '~') { if (!down) return; |