[Scummvm-git-logs] scummvm master -> 95043035cc17bf33e4e9dc4bcc5831b66fbdd98e

sev- noreply at scummvm.org
Mon Apr 14 20:04:54 UTC 2025


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:
95043035cc IMAGE: Add missing override keywords


Commit: 95043035cc17bf33e4e9dc4bcc5831b66fbdd98e
    https://github.com/scummvm/scummvm/commit/95043035cc17bf33e4e9dc4bcc5831b66fbdd98e
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2025-04-14T22:04:31+02:00

Commit Message:
IMAGE: Add missing override keywords

Changed paths:
    image/bmp.h
    image/pict.h


diff --git a/image/bmp.h b/image/bmp.h
index 206b3ab4153..ba756d7d919 100644
--- a/image/bmp.h
+++ b/image/bmp.h
@@ -72,8 +72,8 @@ public:
 	virtual ~BitmapDecoder();
 
 	// ImageDecoder API
-	void destroy();
-	virtual bool loadStream(Common::SeekableReadStream &stream);
+	void destroy() override;
+	virtual bool loadStream(Common::SeekableReadStream &stream) override;
 	const Graphics::Surface *getSurface() const override { return _surface; }
 	const Graphics::Palette &getPalette() const override { return _palette; }
 
diff --git a/image/pict.h b/image/pict.h
index 8f4c95c1b05..97f1c649bca 100644
--- a/image/pict.h
+++ b/image/pict.h
@@ -60,8 +60,8 @@ public:
 	~PICTDecoder();
 
 	// ImageDecoder API
-	bool loadStream(Common::SeekableReadStream &stream);
-	void destroy();
+	bool loadStream(Common::SeekableReadStream &stream) override;
+	void destroy() override;
 	const Graphics::Surface *getSurface() const override { return _outputSurface; }
 	const Graphics::Palette &getPalette() const override { return _palette; }
 




More information about the Scummvm-git-logs mailing list