diff options
| -rw-r--r-- | code/client/snd_codec_wav.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/code/client/snd_codec_wav.c b/code/client/snd_codec_wav.c index 17553f3..146d526 100644 --- a/code/client/snd_codec_wav.c +++ b/code/client/snd_codec_wav.c @@ -163,7 +163,7 @@ static qboolean S_ReadWavHeader(fileHandle_t file, snd_info_t *info)  	if(fmtlen > 16)  	{  		fmtlen -= 16; -		S_SkipChunk(file, fmtlen); +		FS_Seek( file, fmtlen, FS_SEEK_CUR );  	}  	// Scan for the data chunk  | 
