1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-27 22:39:53 +00:00

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

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