From 2187dac49bdf2f3075e4a97879c738ad9f674459 Mon Sep 17 00:00:00 2001 From: RedEnchilada Date: Wed, 13 May 2015 16:48:34 -0500 Subject: [PATCH] Fix random texture triangles rendering on lines with slopes????? --- src/r_segs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/r_segs.c b/src/r_segs.c index 8db5fa73a..73e0a8696 100644 --- a/src/r_segs.c +++ b/src/r_segs.c @@ -2371,7 +2371,7 @@ void R_StoreWallRange(INT32 start, INT32 stop) if (worldhigh < worldtop #ifdef ESLOPE - || worldhighslope < worldtopslope + || worldhighslope <= worldtopslope #endif ) { @@ -2388,7 +2388,7 @@ void R_StoreWallRange(INT32 start, INT32 stop) if (worldlow > worldbottom #ifdef ESLOPE - || worldlowslope > worldbottomslope + || worldlowslope >= worldbottomslope #endif ) {