Skip to content

Commit f10902d

Browse files
committed
fixed missing override
1 parent 3ebccf2 commit f10902d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drawing.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ struct dqi_poly : drawqueueitem {
9797
#endif
9898
void draw_back() override;
9999
color_t outline_group() override { return outline; }
100-
virtual dqi_poly* as_poly() { return this; }
100+
virtual dqi_poly* as_poly() override { return this; }
101101
};
102102

103103
/** \brief Drawqueueitem used to draw lines */

0 commit comments

Comments
 (0)