From b8758532325a5508c33857275fd9523da97ad02c Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sun, 17 Mar 2019 04:19:09 +0100 Subject: [PATCH] racing:: changes in TWIDTH: no more +1 in 3D binary; +1 if it would be 1; increases per each 8 race_tries --- racing.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/racing.cpp b/racing.cpp index dcc04a18..67797cde 100644 --- a/racing.cpp +++ b/racing.cpp @@ -238,7 +238,8 @@ ld start_line_width; void generate_track() { TWIDTH = getDistLimit() - 1; - if(binarytiling && DIM == 3) TWIDTH++; + if(TWIDTH == 1) TWIDTH = 2; + TWIDTH += race_try / 8; #if CAP_FILES if(ghostset().empty())