1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-08-30 17:27:57 +00:00

missing override markers

This commit is contained in:
Zeno Rogue
2019-11-30 18:47:04 +01:00
parent 89cfc2bce1
commit 56e575369b
5 changed files with 9 additions and 9 deletions

View File

@@ -523,7 +523,7 @@ struct hrmap_crystal : hrmap_standard {
#if MAXMDIM >= 4
map<int, transmatrix> adjs;
transmatrix adj(heptagon *h, int d) {
transmatrix adj(heptagon *h, int d) override {
auto co = hcoords[h];
int id = 0;
for(int a=0; a<4; a++) id = (2*id) + ((co[a]>>1) & 1);