Fix missing override keywords

This commit is contained in:
Jonathan G Rennison
2021-03-02 23:41:07 +00:00
parent 3e1589eeae
commit 865cf79915
5 changed files with 22 additions and 22 deletions

View File

@@ -66,7 +66,7 @@ public:
SpriteID GetUnicodeGlyph(WChar key) override { return this->parent->GetUnicodeGlyph(key); }
void SetUnicodeGlyph(WChar key, SpriteID sprite) override { this->parent->SetUnicodeGlyph(key, sprite); }
virtual void InitializeUnicodeGlyphMap()
virtual void InitializeUnicodeGlyphMap() override
{
this->parent->InitializeUnicodeGlyphMap();
font_height_cache[this->fs] = this->GetHeight();