From 3cd9c760523d766890f700afff807463feb30f04 Mon Sep 17 00:00:00 2001 From: Daniel Gibson Date: Sat, 11 Apr 2015 21:04:37 +0200 Subject: [PATCH] Fix fucking misleading comment in FS_AddGameDirectory() that's not for *numbered* pak's, but all paks starting with "pak"! --- src/common/filesystem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/filesystem.c b/src/common/filesystem.c index 0a30ee5a..07a5d46f 100644 --- a/src/common/filesystem.c +++ b/src/common/filesystem.c @@ -1318,7 +1318,7 @@ FS_AddGameDirectory(const char *dir) for (j = 0; j < nfiles - 1; j++) { - /* Skip numbered packs. */ + /* Skip all packs starting with "pak" */ if (glob_match(path, list[j])) { continue;