]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - fs.c
Make PAK loading case insensitive for quake2 pak files...
[xonotic/darkplaces.git] / fs.c
diff --git a/fs.c b/fs.c
index e5cc470948ea3b38abd78195fa6caeca11a5af85..9976cf2227bcbc072a5f5cc3cce090a1939f42af 100644 (file)
--- a/fs.c
+++ b/fs.c
@@ -990,7 +990,7 @@ static pack_t *FS_LoadPackPAK (const char *packfile)
        }
 
        pack = (pack_t *)Mem_Alloc(fs_mempool, sizeof (pack_t));
-       pack->ignorecase = false; // PAK is case sensitive
+       pack->ignorecase = true; // PAK is sensitive in Quake1 but insensitive in Quake2
        strlcpy (pack->filename, packfile, sizeof (pack->filename));
        pack->handle = packhandle;
        pack->numfiles = 0;