[Scummvm-git-logs] scummvm master -> b1beb6feddc6b30cdfd11ccfce8162cb46d5c92f
ccawley2011
noreply at scummvm.org
Fri Apr 3 17:15:17 UTC 2026
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
b1beb6fedd GRAPHICS: Add missing override keywords for Graphics::Screen
Commit: b1beb6feddc6b30cdfd11ccfce8162cb46d5c92f
https://github.com/scummvm/scummvm/commit/b1beb6feddc6b30cdfd11ccfce8162cb46d5c92f
Author: Cameron Cawley (ccawley2011 at gmail.com)
Date: 2026-04-03T18:15:07+01:00
Commit Message:
GRAPHICS: Add missing override keywords for Graphics::Screen
Changed paths:
graphics/screen.h
diff --git a/graphics/screen.h b/graphics/screen.h
index 3aa9c751916..67d04f81c6e 100644
--- a/graphics/screen.h
+++ b/graphics/screen.h
@@ -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
More information about the Scummvm-git-logs
mailing list