[Scummvm-git-logs] scummvm master -> 39cd7338bc157a535b4288efab8fab4cd081d631
sev-
noreply at scummvm.org
Sun May 14 21:24:15 UTC 2023
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:
39cd7338bc GRAPHICS: Added missing override keywords
Commit: 39cd7338bc157a535b4288efab8fab4cd081d631
https://github.com/scummvm/scummvm/commit/39cd7338bc157a535b4288efab8fab4cd081d631
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2023-05-14T23:23:44+02:00
Commit Message:
GRAPHICS: Added missing override keywords
Changed paths:
graphics/sjis.h
diff --git a/graphics/sjis.h b/graphics/sjis.h
index 681e58d6897..8044da03269 100644
--- a/graphics/sjis.h
+++ b/graphics/sjis.h
@@ -19,7 +19,7 @@
*
*/
-// The code in this file is currently used in KYRA, SCI, SCUMM, SAGA,
+// The code in this file is currently used in KYRA, SCI, SCUMM, SAGA,
// and AGOS. If none of those are enabled, we will skip compiling it.
// We also enable this code for ScummVM builds including support
// for dynamic engine plugins.
@@ -243,7 +243,7 @@ public:
/**
* Loads the ROM data from "FONT.ROM".
*/
- bool loadData();
+ bool loadData() override;
/**
* Loads the ROM data from "FONT.ROM".
@@ -262,7 +262,7 @@ private:
uint8 _fontData16x16[kFont16x16Chars * 32];
uint8 _fontData8x16[kFont8x16Chars * 16];
- bool hasFeature(int feat) const;
+ bool hasFeature(int feat) const override;
};
/**
More information about the Scummvm-git-logs
mailing list