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
@@ -285,7 +285,7 @@ void RageFileDriverZip::ParseZipfile()
if( got == 0 ) /* skip */
continue;
zip.SeekCur( info.extra_field_length );
zip.Seek( zip.Tell() + info.extra_field_length );
FileInfo *pInfo = new FileInfo(info);
Files.push_back( pInfo );