1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-02-02 12:19:18 +00:00

missing override added

This commit is contained in:
Zeno Rogue 2020-01-06 22:18:10 +01:00
parent 0cd2765da4
commit 2ebef9e754

View File

@ -228,7 +228,7 @@ EX namespace reg3 {
vector<vector<transmatrix>> tmatrices;
vector<cell*> acells;
transmatrix adj(heptagon *h, int d) { return tmatrices[h->fieldval][d]; }
transmatrix adj(heptagon *h, int d) override { return tmatrices[h->fieldval][d]; }
heptagon *getOrigin() override { return allh[0]; }