THE LINES LIVE AGAIN (initial horizon lines work commit)

This commit is contained in:
Monster Iestyn 2016-08-21 21:17:47 +01:00
parent 074dde5f78
commit ead52294ab
1 changed files with 17 additions and 12 deletions

View File

@ -2622,6 +2622,10 @@ void R_StoreWallRange(INT32 start, INT32 stop)
worldbottomslope >>= 4;
#endif
if (linedef->special == 41) { // HORIZON LINES
topstep = bottomstep = 0;
topfrac = bottomfrac = (centeryfrac>>4);
} else {
topstep = -FixedMul (rw_scalestep, worldtop);
topfrac = (centeryfrac>>4) - FixedMul (worldtop, rw_scale);
@ -2638,6 +2642,7 @@ void R_StoreWallRange(INT32 start, INT32 stop)
bottomstep = (bottomfracend-bottomfrac)/(range);
}
#endif
}
dc_numlights = 0;