[Scummvm-git-logs] scummvm master -> 658b2c3c10527783e95555a0a8864bfc11415e91

sev- sev at scummvm.org
Wed Oct 14 17:40:17 UTC 2020


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

Summary:
366a5f479d DRAGONS: Added override keyword
658b2c3c10 PETKA: Fix warning


Commit: 366a5f479d351e1d9aed13006aa2c64fb12e2d21
    https://github.com/scummvm/scummvm/commit/366a5f479d351e1d9aed13006aa2c64fb12e2d21
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2020-10-14T19:39:46+02:00

Commit Message:
DRAGONS: Added override keyword

Changed paths:
    engines/dragons/metaengine.cpp


diff --git a/engines/dragons/metaengine.cpp b/engines/dragons/metaengine.cpp
index f372c7996d..dcf80c53ad 100644
--- a/engines/dragons/metaengine.cpp
+++ b/engines/dragons/metaengine.cpp
@@ -33,7 +33,7 @@
 
 class DragonsMetaEngine : public AdvancedMetaEngine {
 public:
-	const char *getName() const {
+	const char *getName() const override {
 		return "dragons";
 	}
 


Commit: 658b2c3c10527783e95555a0a8864bfc11415e91
    https://github.com/scummvm/scummvm/commit/658b2c3c10527783e95555a0a8864bfc11415e91
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2020-10-14T19:39:46+02:00

Commit Message:
PETKA: Fix warning

Changed paths:
    engines/petka/interfaces/main.h


diff --git a/engines/petka/interfaces/main.h b/engines/petka/interfaces/main.h
index a185aa33b6..fd76698b79 100644
--- a/engines/petka/interfaces/main.h
+++ b/engines/petka/interfaces/main.h
@@ -43,7 +43,7 @@ public:
 
 	void start(int id) override;
 
-	virtual void update(uint time);
+	virtual void update(uint time) override;
 
 	void loadRoom(int id, bool fromSave);
 




More information about the Scummvm-git-logs mailing list