summaryrefslogtreecommitdiff
path: root/src/strife/r_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/strife/r_main.c')
-rw-r--r--src/strife/r_main.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/strife/r_main.c b/src/strife/r_main.c
index bc902e4a..d9f0672a 100644
--- a/src/strife/r_main.c
+++ b/src/strife/r_main.c
@@ -709,20 +709,21 @@ void R_ExecuteSetViewSize (void)
centeryfrac = centery<<FRACBITS;
projection = centerxfrac;
- if (!detailshift)
+ //if (!detailshift) // villsa [STRIFE]
{
colfunc = basecolfunc = R_DrawColumn;
- fuzzcolfunc = R_DrawFuzzColumn;
+ fuzzcolfunc = R_DrawTLColumn; // villsa [STRIFE]
transcolfunc = R_DrawTranslatedColumn;
spanfunc = R_DrawSpan;
}
- else
+ // villsa [STRIFE] unused detail stuff
+ /*else
{
colfunc = basecolfunc = R_DrawColumnLow;
fuzzcolfunc = R_DrawFuzzColumnLow;
transcolfunc = R_DrawTranslatedColumnLow;
spanfunc = R_DrawSpanLow;
- }
+ }*/
R_InitBuffer (scaledviewwidth, viewheight);
@@ -930,3 +931,4 @@ void R_RenderPlayerView (player_t* player)
// Check for new console commands.
NetUpdate ();
}
+