From 86721f1457b059b04474ca2b26ee43b920723a18 Mon Sep 17 00:00:00 2001 From: toasterbabe Date: Sun, 19 Jun 2016 17:29:04 +0100 Subject: [PATCH] Compilation fix of the patch to disable this feature ( :c ). --- src/p_slopes.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/p_slopes.c b/src/p_slopes.c index f134b20e..936af442 100644 --- a/src/p_slopes.c +++ b/src/p_slopes.c @@ -249,8 +249,8 @@ void P_SpawnSlope_Line(int linenum) boolean backceil = (special == 711 || special == 712 || special == 703); UINT8 flags = 0; // Slope flags - if (line->flags & ML_NOSONIC) - ; // flags |= SL_NOPHYSICS; - disabled for 2.1 + /*if (line->flags & ML_NOSONIC) + flags |= SL_NOPHYSICS; - disabled for 2.1*/ if (line->flags & ML_NOTAILS) flags |= SL_NODYNAMIC; if (line->flags & ML_NOKNUX) @@ -685,8 +685,8 @@ void P_ResetDynamicSlopes(void) { size_t which = lines[i].special; UINT8 flags = SL_VERTEXSLOPE; - if (lines[i].flags & ML_NOSONIC) - ; // flags |= SL_NOPHYSICS; - disabled for 2.1 + /*if (line->flags & ML_NOSONIC) + flags |= SL_NOPHYSICS; - disabled for 2.1*/ if (!(lines[i].flags & ML_NOTAILS)) flags |= SL_NODYNAMIC;