mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-28 04:51:42 +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
|
if (worldhigh < worldtop
|
||||||
#ifdef ESLOPE
|
#ifdef ESLOPE
|
||||||
|| worldhighslope < worldtopslope
|
|| worldhighslope <= worldtopslope
|
||||||
#endif
|
#endif
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
|
@ -2388,7 +2388,7 @@ void R_StoreWallRange(INT32 start, INT32 stop)
|
||||||
|
|
||||||
if (worldlow > worldbottom
|
if (worldlow > worldbottom
|
||||||
#ifdef ESLOPE
|
#ifdef ESLOPE
|
||||||
|| worldlowslope > worldbottomslope
|
|| worldlowslope >= worldbottomslope
|
||||||
#endif
|
#endif
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue