]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
removed a couple unused hz_bitstream_read functions
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 30 Mar 2003 08:40:28 +0000 (08:40 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 30 Mar 2003 08:40:28 +0000 (08:40 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@2886 d7cf8633-e32d-0410-b094-e92efae38249

dpvsimpledecode.c

index b248ea0f787549296fc9ca1ea2a17b4ab5697ee7..bd0047050e683e98c09840dae609ca89ebc69a90 100644 (file)
@@ -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;