summaryrefslogtreecommitdiff
path: root/src/hexen/sb_bar.c
diff options
context:
space:
mode:
authorSimon Howard2008-10-01 18:19:11 +0000
committerSimon Howard2008-10-01 18:19:11 +0000
commitc137615aa75afda8c744e57278c138bd29d5d68e (patch)
treed0fdde644945eae0bda0a77f4995057fa9c5e723 /src/hexen/sb_bar.c
parentf8b216522bb4a2f2a8279412ff949955706d727e (diff)
downloadchocolate-doom-c137615aa75afda8c744e57278c138bd29d5d68e.tar.gz
chocolate-doom-c137615aa75afda8c744e57278c138bd29d5d68e.tar.bz2
chocolate-doom-c137615aa75afda8c744e57278c138bd29d5d68e.zip
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
Diffstat (limited to 'src/hexen/sb_bar.c')
-rw-r--r--src/hexen/sb_bar.c18
1 files changed, 9 insertions, 9 deletions
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)
{