From 946561ba4413859511348d2ab22c7c216bacd6bc Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Wed, 29 Jan 2014 16:13:24 +0900 Subject: [PATCH] Don't bail out prematurely when searching for files. This fixes the problem of not finding files without a .gz extension when gzip support is enabled (most of my quake data is compressed, so it took a while for me to notice the problem). --- libs/util/quakefs.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libs/util/quakefs.c b/libs/util/quakefs.c index 3fd35e9dc..5131f7194 100644 --- a/libs/util/quakefs.c +++ b/libs/util/quakefs.c @@ -849,8 +849,7 @@ qfs_findfile_search (const vpath_t *vpath, const searchpath_t *sp, for (fn = fnames; *fn; fn++) { if (qfs_expand_path (path, sp->filename, *fn, 1) == 0) { if (Sys_FileExists (path->str) == -1) { - dstring_delete (path); - return 0; + continue; } Sys_MaskPrintf (SYS_FS_F, "FindFile: %s\n", path->str);