summaryrefslogtreecommitdiff
path: root/src/hexen/v_video.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/v_video.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/v_video.c')
-rw-r--r--src/hexen/v_video.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/hexen/v_video.c b/src/hexen/v_video.c
index a763a639..46bd0bb7 100644
--- a/src/hexen/v_video.c
+++ b/src/hexen/v_video.c
@@ -178,7 +178,7 @@ void V_DrawPatch(int x, int y, patch_t * patch)
/*
==================
=
-= V_DrawFuzzPatch
+= V_DrawTLPatch
=
= Masks a column based translucent masked pic to the screen.
=
@@ -186,7 +186,7 @@ void V_DrawPatch(int x, int y, patch_t * patch)
*/
extern byte *tinttable;
-void V_DrawFuzzPatch(int x, int y, patch_t * patch)
+void V_DrawTLPatch(int x, int y, patch_t * patch)
{
int count, col;
column_t *column;
@@ -229,7 +229,7 @@ void V_DrawFuzzPatch(int x, int y, patch_t * patch)
/*
==================
=
-= V_DrawAltFuzzPatch
+= V_DrawAltTLPatch
=
= Masks a column based translucent masked pic to the screen.
=
@@ -237,7 +237,7 @@ void V_DrawFuzzPatch(int x, int y, patch_t * patch)
*/
extern byte *tinttable;
-void V_DrawAltFuzzPatch(int x, int y, patch_t * patch)
+void V_DrawAltTLPatch(int x, int y, patch_t * patch)
{
int count, col;
column_t *column;