mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-27 04:41:23 +00:00
Fix random texture triangles rendering on lines with slopes?????
This commit is contained in:
parent
a3358479f0
commit
2187dac49b
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue