commit 18fd33398adf264679e66507a63d01fbd8987018
Author: Michael Day <contact@michaelcday.com>
AuthorDate: Tue Jun 7 21:47:42 2022 -0400
Commit: Michael Day <contact@michaelcday.com>
CommitDate: Tue Jun 7 21:51:53 2022 -0400
Heretic: Use correct transparency drawer
---
src/heretic/in_lude.c | 4 ++--
src/heretic/sb_bar.c | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/heretic/in_lude.c b/src/heretic/in_lude.c
index ed2ff0ca..fd0f9edd 100644
--- a/src/heretic/in_lude.c
+++ b/src/heretic/in_lude.c
@@ -895,10 +895,10 @@ void IN_DrawDMStats(void)
}
else
{
- V_DrawTLPatch(40, ypos,
+ V_DrawAltTLPatch(40, ypos,
W_CacheLumpNum(patchFaceOkayBase + i,
PU_CACHE));
- V_DrawTLPatch(xpos, 18,
+ V_DrawAltTLPatch(xpos, 18,
W_CacheLumpNum(patchFaceDeadBase + i,
PU_CACHE));
}
diff --git a/src/heretic/sb_bar.c b/src/heretic/sb_bar.c
index c73feb60..8884a9c0 100644
--- a/src/heretic/sb_bar.c
+++ b/src/heretic/sb_bar.c
@@ -950,7 +950,7 @@ void DrawFullScreenStuff(void)
if (CPlayer->readyArtifact > 0)
{
patch = DEH_String(patcharti[CPlayer->readyArtifact]);
- V_DrawTLPatch(286, 170, W_CacheLumpName(DEH_String("ARTIBOX"), PU_CACHE));
+ V_DrawAltTLPatch(286, 170, W_CacheLumpName(DEH_String("ARTIBOX"), PU_CACHE));
V_DrawPatch(286, 170, W_CacheLumpName(patch, PU_CACHE));
DrSmallNumber(CPlayer->inventory[inv_ptr].count, 307, 192);
}
@@ -960,7 +960,7 @@ void DrawFullScreenStuff(void)
x = inv_ptr - curpos;
for (i = 0; i < 7; i++)
{
- V_DrawTLPatch(50 + i * 31, 168,
+ V_DrawAltTLPatch(50 + i * 31, 168,
W_CacheLumpName(DEH_String("ARTIBOX"), PU_CACHE));
if (CPlayer->inventorySlotNum > x + i
&& CPlayer->inventory[x + i].type != arti_none)