[Scummvm-git-logs] scummvm master -> 3d9169440a9fa6197b4c3495b135473a34085b22
sev-
noreply at scummvm.org
Sun Nov 6 23:48:37 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:
3d9169440a FREESCAPE: Fix override warnings
Commit: 3d9169440a9fa6197b4c3495b135473a34085b22
https://github.com/scummvm/scummvm/commit/3d9169440a9fa6197b4c3495b135473a34085b22
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2022-11-07T00:48:18+01:00
Commit Message:
FREESCAPE: Fix override warnings
Changed paths:
engines/freescape/objects/sensor.h
diff --git a/engines/freescape/objects/sensor.h b/engines/freescape/objects/sensor.h
index 1b843bdc761..43b0a7335aa 100644
--- a/engines/freescape/objects/sensor.h
+++ b/engines/freescape/objects/sensor.h
@@ -42,8 +42,8 @@ public:
}
virtual ~Sensor() {}
- bool isDrawable() { return false; }
- bool isPlanar() { return true; }
+ bool isDrawable() override { return false; }
+ bool isPlanar() override { return true; }
ObjectType getType() override { return kSensorType; };
Math::Vector3d getRotation() { return _rotation; }
More information about the Scummvm-git-logs
mailing list