mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 22:31:05 +00:00
make gzipped oggs explicitly unsupported
This commit is contained in:
parent
5b9d4fb241
commit
c745d2a868
1 changed files with 2 additions and 1 deletions
|
@ -584,8 +584,9 @@ _COM_FOpenFile (const char *filename, QFile **gzfile, char *foundname, int zip)
|
|||
// search through the path, one element at a time
|
||||
for (search = com_searchpaths; search; search = search->next) {
|
||||
#ifdef HAVE_VORBIS
|
||||
//NOTE gzipped oggs not supported
|
||||
if (oggfilename[0]
|
||||
&& open_file (search, oggfilename, gzfile, foundname, zip) != -1)
|
||||
&& open_file (search, oggfilename, gzfile, foundname, false) != -1)
|
||||
goto ok;
|
||||
#endif
|
||||
#ifdef HAVE_ZLIB
|
||||
|
|
Loading…
Reference in a new issue