removed debug which caused drawing each edge twice

This commit is contained in:
Zeno Rogue 2018-08-17 16:50:56 +02:00
parent 09fb882b71
commit 628edd6650
1 changed files with 1 additions and 1 deletions

View File

@ -4760,7 +4760,7 @@ void drawcell(cell *c, transmatrix V, int spinv, bool mirrored) {
}
else {
for(int t=0; t<c->type; t++)
if(true) // c->mov[t] && c->mov[t] < c)
if(c->mov[t] && c->mov[t] < c)
queueline(V * get_corner_position(c, t),
V * get_corner_position(c, (t+1)%c->type),
gridcolor(c, c->mov[t]), prec);