diff --git a/code/qcommon/files.c b/code/qcommon/files.c index 20808f0b..0b13ecdb 100644 --- a/code/qcommon/files.c +++ b/code/qcommon/files.c @@ -1628,9 +1628,11 @@ int FS_Seek( fileHandle_t f, long offset, int origin ) { } if (fsh[f].streamed) { + int r; fsh[f].streamed = qfalse; - FS_Seek( f, offset, origin ); + r = FS_Seek( f, offset, origin ); fsh[f].streamed = qtrue; + return r; } if (fsh[f].zipFile == qtrue) {