summaryrefslogtreecommitdiff
path: root/src/heretic/r_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/heretic/r_main.c')
-rw-r--r--src/heretic/r_main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/heretic/r_main.c b/src/heretic/r_main.c
index e75d35bb..f13ebfa7 100644
--- a/src/heretic/r_main.c
+++ b/src/heretic/r_main.c
@@ -77,7 +77,7 @@ int extralight; // bumped light from gun blasts
void (*colfunc) (void);
void (*basecolfunc) (void);
-void (*fuzzcolfunc) (void);
+void (*tlcolfunc) (void);
void (*transcolfunc) (void);
void (*spanfunc) (void);
@@ -583,14 +583,14 @@ void R_ExecuteSetViewSize(void)
if (!detailshift)
{
colfunc = basecolfunc = R_DrawColumn;
- fuzzcolfunc = R_DrawFuzzColumn;
+ tlcolfunc = R_DrawTLColumn;
transcolfunc = R_DrawTranslatedColumn;
spanfunc = R_DrawSpan;
}
else
{
colfunc = basecolfunc = R_DrawColumnLow;
- fuzzcolfunc = R_DrawFuzzColumn;
+ tlcolfunc = R_DrawTLColumn;
transcolfunc = R_DrawTranslatedColumn;
spanfunc = R_DrawSpanLow;
}