diff options
Diffstat (limited to 'src/text.h')
-rw-r--r-- | src/text.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/text.h b/src/text.h index 4efc63163..8ce105157 100644 --- a/src/text.h +++ b/src/text.h @@ -99,7 +99,7 @@ class FlashText final : public Text /** * Remove the text from the screen */ - virtual ~FlashText() + ~FlashText() { } /** @@ -111,8 +111,8 @@ class FlashText final : public Text /** * Draws the text. */ - virtual void draw(Graphics *const graphics, - const int xOff, const int yOff) override; + void draw(Graphics *const graphics, + const int xOff, const int yOff) override; private: int mTime; /**< Time left for flashing */ |