mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2025-01-18 23:21:39 +00:00
Fix a little quirk still
This commit is contained in:
parent
797d127dfc
commit
a0582fb21a
1 changed files with 1 additions and 1 deletions
|
@ -425,7 +425,7 @@ qboolean NET_CompareBaseAdrMask(netadr_t a, netadr_t b, int netmask)
|
||||||
if(curbyte && memcmp(addra, addrb, curbyte))
|
if(curbyte && memcmp(addra, addrb, curbyte))
|
||||||
return qfalse;
|
return qfalse;
|
||||||
|
|
||||||
netmask &= ~0x07;
|
netmask &= 0x07;
|
||||||
if(netmask)
|
if(netmask)
|
||||||
{
|
{
|
||||||
cmpmask = (1 << netmask) - 1;
|
cmpmask = (1 << netmask) - 1;
|
||||||
|
|
Loading…
Reference in a new issue