IOQ3 commit 1948

This commit is contained in:
Richard Allen 2011-06-27 20:07:26 +00:00
parent cc17778f5a
commit 11af9d3237

View file

@ -425,7 +425,7 @@ qboolean NET_CompareBaseAdrMask(netadr_t a, netadr_t b, int netmask)
if(curbyte && memcmp(addra, addrb, curbyte))
return qfalse;
netmask &= ~0x07;
netmask &= 0x07;
if(netmask)
{
cmpmask = (1 << netmask) - 1;