GRAPHICS: Add missing override keywords for Graphics::Screen

This commit is contained in:
Cameron Cawley
2026-04-03 18:15:07 +01:00
parent 0ba11ca933
commit b1beb6fedd
+2 -2
View File
@@ -80,13 +80,13 @@ public:
/**
* Clear the current dirty rects list
*/
virtual void clearDirtyRects() { _dirtyRects.clear(); }
void clearDirtyRects() override { _dirtyRects.clear(); }
/**
* Adds a rectangle to the list of modified areas of the screen during the
* current frame
*/
virtual void addDirtyRect(const Common::Rect &r);
void addDirtyRect(const Common::Rect &r) override;
/**
* Updates the screen by copying any affected areas to the system