]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
The mouse buttons now use the range 512 - 1023 and the joystick/aux stuff starts...
authorblack <black@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 10 Feb 2004 16:03:44 +0000 (16:03 +0000)
committerblack <black@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 10 Feb 2004 16:03:44 +0000 (16:03 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@3885 d7cf8633-e32d-0410-b094-e92efae38249

keys.h

diff --git a/keys.h b/keys.h
index 74b84439be85ff305332bd076fa3acd5c3787977..0cf98f4799b67f0a59595ff8ac4c085d030dcf68 100644 (file)
--- a/keys.h
+++ b/keys.h
@@ -105,7 +105,7 @@ extern enum {
 
        // mouse buttons generate virtual keys
 
-       K_MOUSE1,
+       K_MOUSE1 = 512,
        K_MOUSE2,
        K_MOUSE3,
        K_MOUSE4,
@@ -127,7 +127,7 @@ extern enum {
 //
 // joystick buttons
 //
-       K_JOY1,
+       K_JOY1 = 1024,
        K_JOY2,
        K_JOY3,
        K_JOY4,