1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-28 20:37:40 +00:00

added missing 'override' markers

This commit is contained in:
Zeno Rogue
2019-05-07 01:10:36 +02:00
parent 3b5733c935
commit ee8b442300

View File

@@ -151,7 +151,7 @@ namespace binary {
hrmap_binary() : hrmap_hyperbolic() { set_seed(); } hrmap_binary() : hrmap_hyperbolic() { set_seed(); }
heptagon *create_step(heptagon *parent, int d) { heptagon *create_step(heptagon *parent, int d) override {
auto h = parent; auto h = parent;
switch(geometry) { switch(geometry) {
case gBinaryTiling: { case gBinaryTiling: {
@@ -320,7 +320,7 @@ namespace binary {
return NULL; return NULL;
} }
void draw() { void draw() override {
dq::visited.clear(); dq::visited.clear();
dq::enqueue(viewctr.at, cview()); dq::enqueue(viewctr.at, cview());