mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-11-18 14:45:12 +00:00
removed debug which caused drawing each edge twice
This commit is contained in:
@@ -4760,7 +4760,7 @@ void drawcell(cell *c, transmatrix V, int spinv, bool mirrored) {
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
for(int t=0; t<c->type; t++)
|
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),
|
queueline(V * get_corner_position(c, t),
|
||||||
V * get_corner_position(c, (t+1)%c->type),
|
V * get_corner_position(c, (t+1)%c->type),
|
||||||
gridcolor(c, c->mov[t]), prec);
|
gridcolor(c, c->mov[t]), prec);
|
||||||
|
|||||||
Reference in New Issue
Block a user