summaryrefslogtreecommitdiff
path: root/src/hexen/in_lude.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hexen/in_lude.c')
-rw-r--r--src/hexen/in_lude.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/hexen/in_lude.c b/src/hexen/in_lude.c
index 160d8827..4d11b7c8 100644
--- a/src/hexen/in_lude.c
+++ b/src/hexen/in_lude.c
@@ -290,14 +290,17 @@ static void UnloadPics(void)
if (HubCount || gametype == DEATHMATCH)
{
- Z_ChangeTag(patchINTERPIC, PU_CACHE);
+ W_ReleaseLumpName("INTERPIC");
+
+ patchINTERPIC = W_CacheLumpName("INTERPIC", PU_STATIC);
+ FontBLumpBase = W_GetNumForName("FONTB16");
for (i = 0; i < 10; i++)
{
- Z_ChangeTag(FontBNumbers[i], PU_CACHE);
+ W_ReleaseLumpNum(FontBLumpBase + i);
}
- Z_ChangeTag(FontBNegative, PU_CACHE);
- Z_ChangeTag(FontBSlash, PU_CACHE);
- Z_ChangeTag(FontBPercent, PU_CACHE);
+ W_ReleaseLumpName("FONTB13");
+ W_ReleaseLumpName("FONTB15");
+ W_ReleaseLumpName("FONTB05");
}
}