[Scummvm-git-logs] scummvm master -> 757fbace75426958be0bace4dc224eaa73bf54ac

sev- noreply at scummvm.org
Thu Nov 10 12:43:47 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:
757fbace75 FREESCAPE: Add missing override keywords


Commit: 757fbace75426958be0bace4dc224eaa73bf54ac
    https://github.com/scummvm/scummvm/commit/757fbace75426958be0bace4dc224eaa73bf54ac
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2022-11-10T13:43:10+01:00

Commit Message:
FREESCAPE: Add missing override keywords

Changed paths:
    engines/freescape/objects/entrance.h


diff --git a/engines/freescape/objects/entrance.h b/engines/freescape/objects/entrance.h
index be2e9e19849..b11e93f7d28 100644
--- a/engines/freescape/objects/entrance.h
+++ b/engines/freescape/objects/entrance.h
@@ -42,8 +42,8 @@ public:
 	}
 	virtual ~Entrance() {}
 
-	bool isDrawable() { return false; }
-	bool isPlanar() { return true; }
+	bool isDrawable() override { return false; }
+	bool isPlanar() override { return true; }
 	ObjectType getType() override { return ObjectType::kEntranceType; };
 	Math::Vector3d getRotation() { return _rotation; }
 




More information about the Scummvm-git-logs mailing list