1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-24 05:17:17 +00:00

fixed grid drawing

This commit is contained in:
Zeno Rogue 2018-08-27 19:38:11 +02:00
parent baffb16e83
commit d049cb63af

View File

@ -4780,8 +4780,8 @@ void drawcell(cell *c, transmatrix V, int spinv, bool mirrored) {
else {
for(int t=0; t<c->type; t++)
if(c->move(t) && c->move(t) < c)
queueline(V * get_corner_position(c, (t+c->type-1)%c->type),
V * get_corner_position(c, t%c->type),
queueline(V * get_corner_position(c, t%c->type),
V * get_corner_position(c, (t+1)%c->type),
gridcolor(c, c->move(t)), prec);
}
}