[Scummvm-git-logs] scummvm branch-2-5 -> b2f7f94f3c370ce18788ae5c1683d175c0955184

sev- sev at scummvm.org
Tue Oct 19 18:11:33 UTC 2021


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
b2f7f94f3c SCUMM: Added override keywords


Commit: b2f7f94f3c370ce18788ae5c1683d175c0955184
    https://github.com/scummvm/scummvm/commit/b2f7f94f3c370ce18788ae5c1683d175c0955184
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-10-19T21:11:27+03:00

Commit Message:
SCUMM: Added override keywords

Changed paths:
    engines/scumm/charset.h


diff --git a/engines/scumm/charset.h b/engines/scumm/charset.h
index 20573cf1e2..1f6befa114 100644
--- a/engines/scumm/charset.h
+++ b/engines/scumm/charset.h
@@ -299,7 +299,7 @@ public:
 
 	void setCurID(int32 id) override;
 
-	int getStringWidth(int arg, const byte *text, uint strLenMax = 100000);
+	int getStringWidth(int arg, const byte *text, uint strLenMax = 100000) override;
 	int getFontHeight() override;
 	int getCharWidth(uint16 chr) override;
 	void printChar(int chr, bool ignoreCharsetMask) override;
@@ -321,7 +321,7 @@ public:
 
 	void setCurID(int32 id) override;
 
-	int getStringWidth(int arg, const byte *text, uint strLenMax = 1000000);
+	int getStringWidth(int arg, const byte *text, uint strLenMax = 1000000) override;
 	int getFontHeight() override;
 	int getCharHeight(byte chr) override;
 	int getCharWidth(uint16 chr) override;




More information about the Scummvm-git-logs mailing list