From 114bc2069cd86c93cf3543b25454a2ea69623220 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Tue, 24 Jul 2018 22:50:18 +0300 Subject: [PATCH] HARD_DDF_LIMITS_DISABLED condition can't be correct. --- custom.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom.cpp b/custom.cpp index d7dda90c..5feebc70 100644 --- a/custom.cpp +++ b/custom.cpp @@ -702,7 +702,7 @@ static void decide_diw (int hpos) thisline_decision.diwfirstword = diwfirstword < 0 ? min_diwlastword : diwfirstword; hdiwstate = DIW_waiting_stop; } - if (((hpos >= maxhpos && HARD_DDF_LIMITS_DISABLED) || (lhdiw >= diw_hstop && last_hdiw < diw_hstop)) && hdiwstate == DIW_waiting_stop) { + if ((lhdiw >= diw_hstop && last_hdiw < diw_hstop) && hdiwstate == DIW_waiting_stop) { if (thisline_decision.diwlastword < 0) thisline_decision.diwlastword = diwlastword < 0 ? 0 : diwlastword; hdiwstate = DIW_waiting_start; -- 2.47.3