Remove RageFile::SeekCur(). It's just as easy to call Seek(Tell()), and

separating "seek from current position" doesn't do anything useful for
file drivers.
This commit is contained in:
Glenn Maynard
2004-12-09 08:36:08 +00:00
parent b6d711b3c1
commit fa2719a2c1
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ void RageFile_JPEG_skip_input_data( j_decompress_ptr cinfo, long num_bytes )
num_bytes -= in_buffer;
if( num_bytes )
src->file->SeekCur( num_bytes );
src->file->Seek( src->file->Tell() + num_bytes );
}
void RageFile_JPEG_term_source( j_decompress_ptr cinfo )