]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - wad.c
changed blaze.mindphukd.org back to an ip address because the hostname isn't resolvin...
[xonotic/darkplaces.git] / wad.c
diff --git a/wad.c b/wad.c
index 2183b8e3f9962577be9a5ec40b6c13e261dc9277..35671d6e89e36fd03a6e45826d7bd6a10021739e 100644 (file)
--- a/wad.c
+++ b/wad.c
@@ -70,7 +70,6 @@ void *W_GetLumpName(char *name)
        static int wad_numlumps = 0;
        static lumpinfo_t *wad_lumps = NULL;
        static qbyte *wad_base = NULL;
-       static mempool_t *wad_mempool = NULL;
 
        W_CleanupName (name, clean);
 
@@ -83,8 +82,7 @@ void *W_GetLumpName(char *name)
                                Con_Print("gfx.wad doesn't have WAD2 id\n");
                        else
                        {
-                               wad_mempool = Mem_AllocPool("gfx.wad", 0, NULL);
-                               wad_base = Mem_Alloc(wad_mempool, fs_filesize);
+                               wad_base = Mem_Alloc(cl_mempool, fs_filesize);
 
                                memcpy(wad_base, temp, fs_filesize);
                                Mem_Free(temp);