1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-02-13 04:59:44 +00:00

missing override attributes

This commit is contained in:
Zeno Rogue
2019-11-15 14:24:17 +01:00
parent 9bfe53fb48
commit 89225f4632
3 changed files with 6 additions and 6 deletions

View File

@@ -508,7 +508,7 @@ EX namespace binary {
return res;
}
ld spin_angle(cell *c, int d) {
ld spin_angle(cell *c, int d) override {
if(WDIM == 3 || geometry == gBinary4 || geometry == gTernary) {
return hrmap::spin_angle(c, d);
}
@@ -545,7 +545,7 @@ EX namespace binary {
const transmatrix iadj(heptagon *h, int dir) { heptagon *h1 = h->cmove(dir); return adj(h1, h->c.spin(dir)); }
transmatrix adj(cell *c, int dir) { return adj(c->master, dir); }
transmatrix adj(cell *c, int dir) override { return adj(c->master, dir); }
void virtualRebase(heptagon*& base, transmatrix& at) override {