racing:: changes in TWIDTH: no more +1 in 3D binary; +1 if it would be 1; increases per each 8 race_tries

This commit is contained in:
Zeno Rogue
2019-09-12 22:38:47 +02:00
parent 414353d720
commit b875853232
+2 -1
View File
@@ -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())