[Scummvm-git-logs] scummvm master -> 85e07bb6680acb35c97f22e0e77aea323f75e553
aquadran
noreply at scummvm.org
Sat Jan 1 13:10:13 UTC 2022
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:
85e07bb668 BURIED: Added missing 'override'
Commit: 85e07bb6680acb35c97f22e0e77aea323f75e553
https://github.com/scummvm/scummvm/commit/85e07bb6680acb35c97f22e0e77aea323f75e553
Author: PaweÅ KoÅodziejski (aquadran at gmail.com)
Date: 2022-01-01T14:10:09+01:00
Commit Message:
BURIED: Added missing 'override'
Changed paths:
engines/buried/buried.h
diff --git a/engines/buried/buried.h b/engines/buried/buried.h
index f05e4a9a921..2443b7010b8 100644
--- a/engines/buried/buried.h
+++ b/engines/buried/buried.h
@@ -65,7 +65,7 @@ class VideoWindow;
class BuriedEngine : public ::Engine {
protected:
- Common::Error run();
+ Common::Error run() override;
public:
BuriedEngine(OSystem *syst, const ADGameDescription *gamedesc);
@@ -82,8 +82,8 @@ public:
Common::String getLibraryName() const;
Common::Language getLanguage() const;
- bool hasFeature(EngineFeature f) const;
- void pauseEngineIntern(bool pause);
+ bool hasFeature(EngineFeature f) const override;
+ void pauseEngineIntern(bool pause) override;
// Resources
Common::String getString(uint32 stringID);
@@ -142,8 +142,8 @@ public:
void showPoints();
// Save/Load
- bool canLoadGameStateCurrently();
- bool canSaveGameStateCurrently();
+ bool canLoadGameStateCurrently() override;
+ bool canSaveGameStateCurrently() override;
Common::String getSaveStateName(int slot) const override {
return Common::String::format("buried.%03d", slot);
}
More information about the Scummvm-git-logs
mailing list