From b47a49a03370e7ea42f47623b9f72a5ca799f0e7 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Sat, 3 Oct 2009 11:52:53 +0000 Subject: * Merge ioq3-r1423 + IPv6 + VoIP + Stereo rendering + Other minor stuff --- src/qcommon/huffman.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/qcommon/huffman.c') diff --git a/src/qcommon/huffman.c b/src/qcommon/huffman.c index a579944f..82aadad9 100644 --- a/src/qcommon/huffman.c +++ b/src/qcommon/huffman.c @@ -40,6 +40,16 @@ void Huff_putBit( int bit, byte *fout, int *offset) { *offset = bloc; } +int Huff_getBloc(void) +{ + return bloc; +} + +void Huff_setBloc(int _bloc) +{ + bloc = _bloc; +} + int Huff_getBit( byte *fin, int *offset) { int t; bloc = *offset; -- cgit