From b17bedde4a6a102c8a16bbdba0af639c9568afcb Mon Sep 17 00:00:00 2001 From: Mark Olsen Date: Wed, 10 Aug 2005 22:39:56 +0000 Subject: [PATCH] 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 --- engine/common/common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/common/common.c b/engine/common/common.c index ffb496e60..8f727eb9c 100644 --- a/engine/common/common.c +++ b/engine/common/common.c @@ -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;