From a84fa2e534bf30abdc7d35160ec6849fcc42ccd2 Mon Sep 17 00:00:00 2001 From: Spoike Date: Sat, 28 May 2022 18:00:22 +0000 Subject: [PATCH] Fix warning message. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@6254 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/cl_input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/client/cl_input.c b/engine/client/cl_input.c index cd14bcd86..77784287b 100644 --- a/engine/client/cl_input.c +++ b/engine/client/cl_input.c @@ -767,7 +767,7 @@ cvar_t cl_anglespeedkey = CVAR("cl_anglespeedkey","1.5"); #define GATHERBIT(bname,bit) if (bname.state[pnum] & 3) {bits |= (1u<<(bit));} bname.state[pnum] &= ~2; -#define UNUSEDBUTTON(bnum) if (in_button[bnum].state[pnum] & 3) {Con_Printf("+button%i is not supported on this protocol\n", pnum); } in_button[bnum].state[pnum] &= ~3; +#define UNUSEDBUTTON(bnum) if (in_button[bnum].state[pnum] & 3) {Con_Printf("+button%i is not supported on this protocol\n", bnum); } in_button[bnum].state[pnum] &= ~3; void CL_GatherButtons (usercmd_t *cmd, int pnum) { unsigned int bits = 0;