From 97b89633e50db645c6c48493302c53db4ce1715a Mon Sep 17 00:00:00 2001 From: black Date: Tue, 10 Feb 2004 16:03:44 +0000 Subject: [PATCH] The mouse buttons now use the range 512 - 1023 and the joystick/aux stuff starts at 1024. I **hope** this won't be changed as I've just fixed the msys.qc. git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@3885 d7cf8633-e32d-0410-b094-e92efae38249 --- keys.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/keys.h b/keys.h index 74b84439..0cf98f47 100644 --- 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, -- 2.39.2