mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-22 12:31:32 +00:00
Compilation fix of the patch to disable this feature ( :c ).
This commit is contained in:
parent
fa58993bda
commit
86721f1457
1 changed files with 4 additions and 4 deletions
|
@ -249,8 +249,8 @@ void P_SpawnSlope_Line(int linenum)
|
||||||
boolean backceil = (special == 711 || special == 712 || special == 703);
|
boolean backceil = (special == 711 || special == 712 || special == 703);
|
||||||
|
|
||||||
UINT8 flags = 0; // Slope flags
|
UINT8 flags = 0; // Slope flags
|
||||||
if (line->flags & ML_NOSONIC)
|
/*if (line->flags & ML_NOSONIC)
|
||||||
; // flags |= SL_NOPHYSICS; - disabled for 2.1
|
flags |= SL_NOPHYSICS; - disabled for 2.1*/
|
||||||
if (line->flags & ML_NOTAILS)
|
if (line->flags & ML_NOTAILS)
|
||||||
flags |= SL_NODYNAMIC;
|
flags |= SL_NODYNAMIC;
|
||||||
if (line->flags & ML_NOKNUX)
|
if (line->flags & ML_NOKNUX)
|
||||||
|
@ -685,8 +685,8 @@ void P_ResetDynamicSlopes(void) {
|
||||||
size_t which = lines[i].special;
|
size_t which = lines[i].special;
|
||||||
|
|
||||||
UINT8 flags = SL_VERTEXSLOPE;
|
UINT8 flags = SL_VERTEXSLOPE;
|
||||||
if (lines[i].flags & ML_NOSONIC)
|
/*if (line->flags & ML_NOSONIC)
|
||||||
; // flags |= SL_NOPHYSICS; - disabled for 2.1
|
flags |= SL_NOPHYSICS; - disabled for 2.1*/
|
||||||
if (!(lines[i].flags & ML_NOTAILS))
|
if (!(lines[i].flags & ML_NOTAILS))
|
||||||
flags |= SL_NODYNAMIC;
|
flags |= SL_NODYNAMIC;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue