HYPNO: Added missing 'override' keyword

This commit is contained in:
Paweł Kołodziejski 2022-01-05 15:55:04 +01:00
parent 4246b97582
commit 1fd47cc8c2

View File

@ -303,7 +303,7 @@ public:
Common::Error loadGameStream(Common::SeekableReadStream *stream) override;
Common::Error saveGameStream(Common::WriteStream *stream, bool isAutosave = false) override;
bool hasFeature(EngineFeature f) const {
bool hasFeature(EngineFeature f) const override {
return (f == kSupportsSavingDuringRuntime || f == kSupportsLoadingDuringRuntime);
}