From: havoc Date: Sun, 30 Mar 2003 08:40:28 +0000 (+0000) Subject: removed a couple unused hz_bitstream_read functions X-Git-Tag: xonotic-v0.1.0preview~6694 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=75dc29388daab9eccf84a4a6530326bb8b6f4be6;p=xonotic%2Fdarkplaces.git removed a couple unused hz_bitstream_read functions git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@2886 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/dpvsimpledecode.c b/dpvsimpledecode.c index b248ea0f..bd004705 100644 --- a/dpvsimpledecode.c +++ b/dpvsimpledecode.c @@ -67,17 +67,6 @@ void hz_bitstream_read_close(hz_bitstream_read_t *stream) } } -unsigned int hz_bitstream_read_currentbyte(hz_bitstream_read_t *stream) -{ - return FS_Tell(stream->file); -} - -int hz_bitstream_read_seek(hz_bitstream_read_t *stream, unsigned int position) -{ - stream->endoffile = 0; - return FS_Seek(stream->file, position, SEEK_SET) != 0; -} - hz_bitstream_readblocks_t *hz_bitstream_read_blocks_new(void) { hz_bitstream_readblocks_t *blocks;