1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-04-03 01:07:03 +00:00

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-03-17 04:19:09 +01:00
parent 414353d720
commit b875853232

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())