]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - wad.c
fix stupid crash
[xonotic/darkplaces.git] / wad.c
diff --git a/wad.c b/wad.c
index 13a7b9fdfcd6aa55c17e5d1b7261a7c76b2979ba..7d488dbd961359f8b10733fa7ba20c7680c88c4e 100644 (file)
--- a/wad.c
+++ b/wad.c
@@ -66,7 +66,6 @@ void *W_GetLumpName(const char *name)
        char clean[16];
        wadinfo_t *header;
        int infotableofs;
-       void *temp;
        static int wad_loaded = false;
        static int wad_numlumps = 0;
        static lumpinfo_t *wad_lumps = NULL;
@@ -79,7 +78,7 @@ void *W_GetLumpName(const char *name)
                wad_loaded = true;
                if ((wad_base = FS_LoadFile ("gfx.wad", cl_mempool, false, &filesize)))
                {
-                       if (memcmp(temp, "WAD2", 4))
+                       if (memcmp(wad_base, "WAD2", 4))
                        {
                                Con_Print("gfx.wad doesn't have WAD2 id\n");
                                Mem_Free(wad_base);