From c137615aa75afda8c744e57278c138bd29d5d68e Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Wed, 1 Oct 2008 18:19:11 +0000 Subject: Rename "FuzzColumn"/"FuzzPatch" for Heretic/Hexen code to TLColumn/TLPatch for consistency; these are translucent draw functions, not fuzzy draw functions like Doom's R_DrawFuzzColumn. Subversion-branch: /branches/raven-branch Subversion-revision: 1313 --- src/hexen/sb_bar.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/hexen/sb_bar.c') diff --git a/src/hexen/sb_bar.c b/src/hexen/sb_bar.c index bc9c63cd..0dc27047 100644 --- a/src/hexen/sb_bar.c +++ b/src/hexen/sb_bar.c @@ -1545,16 +1545,16 @@ void DrawKeyBar(void) if (CPlayer->armorpoints[i] <= (ArmorIncrement[CPlayer->class][i] >> 2)) { - V_DrawFuzzPatch(150 + 31 * i, 164, - W_CacheLumpNum(W_GetNumForName("armslot1") + - i, PU_CACHE)); + V_DrawTLPatch(150 + 31 * i, 164, + W_CacheLumpNum(W_GetNumForName("armslot1") + + i, PU_CACHE)); } else if (CPlayer->armorpoints[i] <= (ArmorIncrement[CPlayer->class][i] >> 1)) { - V_DrawAltFuzzPatch(150 + 31 * i, 164, - W_CacheLumpNum(W_GetNumForName("armslot1") - + i, PU_CACHE)); + V_DrawAltTLPatch(150 + 31 * i, 164, + W_CacheLumpNum(W_GetNumForName("armslot1") + + i, PU_CACHE)); } else { @@ -1640,7 +1640,7 @@ void DrawFullScreenStuff(void) { if (CPlayer->readyArtifact > 0) { - V_DrawFuzzPatch(286, 170, W_CacheLumpName("ARTIBOX", PU_CACHE)); + V_DrawTLPatch(286, 170, W_CacheLumpName("ARTIBOX", PU_CACHE)); V_DrawPatch(284, 169, W_CacheLumpName(patcharti[CPlayer->readyArtifact], PU_CACHE)); @@ -1655,8 +1655,8 @@ void DrawFullScreenStuff(void) x = inv_ptr - curpos; for (i = 0; i < 7; i++) { - V_DrawFuzzPatch(50 + i * 31, 168, W_CacheLumpName("ARTIBOX", - PU_CACHE)); + V_DrawTLPatch(50 + i * 31, 168, W_CacheLumpName("ARTIBOX", + PU_CACHE)); if (CPlayer->inventorySlotNum > x + i && CPlayer->inventory[x + i].type != arti_none) { -- cgit v1.2.3