mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 06:32:00 +00:00
Fix warning message.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@6254 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
5743de1167
commit
a84fa2e534
1 changed files with 1 additions and 1 deletions
|
@ -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 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)
|
void CL_GatherButtons (usercmd_t *cmd, int pnum)
|
||||||
{
|
{
|
||||||
unsigned int bits = 0;
|
unsigned int bits = 0;
|
||||||
|
|
Loading…
Reference in a new issue