[Scummvm-git-logs] scummvm master -> 76714d969799015ca1a8bef1110b60bbf07ca555
bluegr
noreply at scummvm.org
Wed Feb 4 19:10:43 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:
76714d9697 JANITORIAL: AGS: add missing override keyword
Commit: 76714d969799015ca1a8bef1110b60bbf07ca555
https://github.com/scummvm/scummvm/commit/76714d969799015ca1a8bef1110b60bbf07ca555
Author: Michael (michael_kuerbis at web.de)
Date: 2026-02-04T21:10:38+02:00
Commit Message:
JANITORIAL: AGS: add missing override keyword
Changed paths:
engines/ags/engine/gfx/gfx_driver_base.h
diff --git a/engines/ags/engine/gfx/gfx_driver_base.h b/engines/ags/engine/gfx/gfx_driver_base.h
index 80fa2851cfc..29d8c7b0bcd 100644
--- a/engines/ags/engine/gfx/gfx_driver_base.h
+++ b/engines/ags/engine/gfx/gfx_driver_base.h
@@ -207,7 +207,7 @@ public:
int GetColorDepth() const override {
return _colDepth;
}
- bool MatchesFormat(AGS::Shared::Bitmap *other) const {
+ bool MatchesFormat(AGS::Shared::Bitmap *other) const override {
return _width == other->GetWidth() && _height == other->GetHeight() && _colDepth == other->GetColorDepth();
}
More information about the Scummvm-git-logs
mailing list