1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-27 14:37:16 +00:00

fixed sidewall drawing in non-pure Archimedean

This commit is contained in:
Zeno Rogue 2018-08-30 16:09:16 +02:00
parent 64a77827f6
commit 56db823daa

View File

@ -3216,6 +3216,8 @@ bool placeSidewall(cell *c, int i, int sidepar, const transmatrix& V, int col) {
transmatrix V2 = V * ddspin(c, i);
if(binarytiling || archimedean || NONSTDVAR) {
if(archimedean && !PURE)
i = (i + arcm::parent_index_of(c->master)/DUALMUL + MODFIXER) % c->type;
draw_shapevec(c, V2, qfi.fshape->gpside[sidepar][i], col, prio);
return false;
}