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

fixed Crystal

This commit is contained in:
Zeno Rogue 2022-02-02 11:54:53 +01:00
parent 064ac7de63
commit f855106613

View File

@ -686,8 +686,8 @@ struct hrmap_crystal : hrmap_standard {
} }
transmatrix relative_matrixh(heptagon *h2, heptagon *h1, const hyperpoint& hint) override { transmatrix relative_matrixh(heptagon *h2, heptagon *h1, const hyperpoint& hint) override {
if(!crystal3()) return hrmap::relative_matrixh(h2, h1, hint); if(!crystal3()) return hrmap_standard::relative_matrixh(h2, h1, hint);
return relative_matrix(h2->c7, h1->c7, hint); return relative_matrixc(h2->c7, h1->c7, hint);
} }
#endif #endif
}; };