]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
removed key-below-escape forced toggleconsole, so that german keyboards can type ^
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Fri, 11 Feb 2005 22:20:42 +0000 (22:20 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Fri, 11 Feb 2005 22:20:42 +0000 (22:20 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5014 d7cf8633-e32d-0410-b094-e92efae38249

keys.c

diff --git a/keys.c b/keys.c
index c3c1b9cd83cc1bd6285dda9c34790fdac33bca04..91f4f55c52013dc52f974ad7b621c8173c510f20 100644 (file)
--- a/keys.c
+++ b/keys.c
@@ -14,7 +14,7 @@
 
        You should have received a copy of the GNU General Public License
        along with this program; if not, write to:
-       
+
                Free Software Foundation, Inc.
                59 Temple Place - Suite 330
                Boston, MA  02111-1307, USA
@@ -911,14 +911,6 @@ Key_Event (int key, char ascii, qboolean down)
                return;
        }
 
-       // console key is hardcoded, so the user can never unbind it
-       if (key == '`' || key == '~')
-       {
-               if (down)
-                       Con_ToggleConsole_f ();
-               return;
-       }
-
        if (down)
        {
                if (!(kb = keybindings[key_bmap][key]))