1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-04 03:27:55 +00:00

added missing override

This commit is contained in:
Zeno Rogue
2023-04-11 16:43:34 +02:00
parent 2a05642198
commit 2576918b8a
4 changed files with 7 additions and 7 deletions

View File

@@ -205,7 +205,7 @@ void prepare_nilform() {
struct nilmodel : model {
hyperpoint transform(hyperpoint h) override { return nilize(h).second; }
void process_triangle(vector<hyperpoint>& hys, vector<hyperpoint>& tot, bool textured, object *co) {
void process_triangle(vector<hyperpoint>& hys, vector<hyperpoint>& tot, bool textured, object *co) override {
auto n0 = nilize(hys[0]).first;
auto n1 = nilize(hys[1]).first;
auto n2 = nilize(hys[2]).first;