mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-27 21:01:04 +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…
Reference in a new issue