From bcb506232417318b03f96dc8a773d0c8d5b1bcba Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Sat, 26 Oct 2013 22:31:44 -0500 Subject: Fix VM FOpenFile( FS_READ ) files seeking twice in FS_Seek --- src/qcommon/files.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/qcommon') diff --git a/src/qcommon/files.c b/src/qcommon/files.c index eb7ff874..0fa49a8a 100644 --- a/src/qcommon/files.c +++ b/src/qcommon/files.c @@ -1590,9 +1590,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) { -- cgit