From 6625d38a056b8a8a0251607c4ce2f53489082b8e Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 2 Nov 2004 05:15:00 +0000 Subject: [PATCH] set the disksize of the wad entry This is an imperfect revision of history. --- libs/util/wadfile.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/util/wadfile.c b/libs/util/wadfile.c index 8b871366f..ae6b6d7fe 100644 --- a/libs/util/wadfile.c +++ b/libs/util/wadfile.c @@ -266,6 +266,7 @@ wad_add (wad_t *wad, const char *filename, const char *lumpname, byte type) static char buf[4]; Qwrite (wad->handle, buf, 4 - (pf->size & 3)); } + pf->disksize = pf->size; Hash_AddElement (wad->lump_hash, pf); return 0; } @@ -312,6 +313,7 @@ wad_add_data (wad_t *wad, const char *lumpname, byte type, const void *data, static char buf[4]; Qwrite (wad->handle, buf, 4 - (pf->size & 3)); } + pf->disksize = pf->size; Hash_AddElement (wad->lump_hash, pf); return 0; }