mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-24 05:17:17 +00:00
removed debug which caused drawing each edge twice
This commit is contained in:
parent
09fb882b71
commit
628edd6650
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user