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

crystal::get_dim() typo fixup

This commit is contained in:
Zeno Rogue 2019-10-21 23:00:04 +02:00
parent 7bc02b8b1e
commit ea65beb5c0

View File

@ -605,7 +605,7 @@ EX heptagon *get_heptagon_at(coord c) { return crystal_map()->get_heptagon_at(c,
EX coord get_coord(heptagon *h) { return crystal_map()->hcoords[h]; }
EX ldcoord get_ldcoord(cell *c) { return crystal_map()->get_coord(c); }
EX int get_dim() { retrun crystal_map()->cs.dim; }
EX int get_dim() { return crystal_map()->cs.dim; }
#if MAXMDIM >= 4
EX transmatrix get_adj(heptagon *h, int d) { return crystal_map()->adj(h, d); }