From: havoc Date: Mon, 6 Jun 2005 06:34:27 +0000 (+0000) Subject: fix crouch button to be the right one X-Git-Tag: xonotic-v0.1.0preview~4781 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=df14f1d688a960ad8dc38b7be167a876508c88c2;p=xonotic%2Fdarkplaces.git fix crouch button to be the right one git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5401 d7cf8633-e32d-0410-b094-e92efae38249 --- 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) {