1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-24 06:03:23 +00:00

missing override

This commit is contained in:
Zeno Rogue 2021-03-09 16:19:02 +01:00
parent 16143f3c9f
commit 1a43e1330f

View File

@ -176,7 +176,7 @@ struct bool_setting : public setting {
virtual bool affects(void *v) override { return v == value; }
virtual void show_edit_option(char key) override;
virtual cld get_cld() override { return *value ? 1 : 0; }
virtual void load_from(const string& s) {
virtual void load_from(const string& s) override {
*value = parseint(s);
}
};