That's #ifdef HUFFNETWORK, not #ifndef MINIMAL

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1215 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Mark Olsen 2005-08-10 22:39:56 +00:00
parent 9ab1a82f47
commit b17bedde4a
1 changed files with 2 additions and 2 deletions

View File

@ -921,7 +921,7 @@ static int MSG_ReadRawBits(sizebuf_t *msg, int bits)
return bitmask;
}
#ifndef MINIMAL
#ifdef HUFFNETWORK
/*
============
MSG_ReadHuffBits
@ -976,7 +976,7 @@ int MSG_ReadBits(int bits)
case SZ_RAWBITS:
bitmask = MSG_ReadRawBits(&net_message, bits);
break;
#ifndef MINIMAL
#ifdef HUFFNETWORK
case SZ_HUFFMAN:
bitmask = MSG_ReadHuffBits(&net_message, bits);
break;