mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
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:
parent
9ab1a82f47
commit
b17bedde4a
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue