3d:: do not draw 'catwalk' cursor in binary

This commit is contained in:
? 2019-02-26 22:20:51 +01:00 committed by Zeno Rogue
parent 92113c82ee
commit ea2c0d257b
1 changed files with 3 additions and 1 deletions

View File

@ -5360,8 +5360,10 @@ void queuecircleat(cell *c, double rad, color_t col) {
if(!gmatrix.count(c)) return;
if(DIM == 3) {
dynamicval<color_t> p(poly_outline, col);
for(int i=0; i<c->type; i++)
for(int i=0; i<c->type; i++) {
if(binarytiling && i < 4) continue;
queuepolyat(gmatrix[c], shBinaryWall[i], 0, PPR::LINE);
}
return;
}
#if CAP_SHAPES