From df14f1d688a960ad8dc38b7be167a876508c88c2 Mon Sep 17 00:00:00 2001 From: havoc Date: Mon, 6 Jun 2005 06:34:27 +0000 Subject: [PATCH] fix crouch button to be the right one git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5401 d7cf8633-e32d-0410-b094-e92efae38249 --- cl_input.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cl_input.c b/cl_input.c index a0672769..3cea0ef2 100644 --- a/cl_input.c +++ b/cl_input.c @@ -955,8 +955,8 @@ void CL_SendMove(void) if (!buf.cursize) return; - // FIXME: bits & 64 is +button5, Nexuiz specific - CL_ClientMovement((bits & 2) != 0, (bits & 64) != 0); + // FIXME: bits & 16 is +button5, Nexuiz specific + CL_ClientMovement((bits & 2) != 0, (bits & 16) != 0); if (NetConn_SendUnreliableMessage(cls.netcon, &buf) == -1) { -- 2.39.2