[Scummvm-git-logs] scummvm master -> 3400b1542c807165f8a82d049cf8f4ddd755b4fd

neuromancer noreply at scummvm.org
Tue Jan 9 19:29:41 UTC 2024


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:
3400b1542c HYPNO: enabled return to launcher for wet and boyz


Commit: 3400b1542c807165f8a82d049cf8f4ddd755b4fd
    https://github.com/scummvm/scummvm/commit/3400b1542c807165f8a82d049cf8f4ddd755b4fd
Author: neuromancer (gustavo.grieco at gmail.com)
Date: 2024-01-09T20:29:45+01:00

Commit Message:
HYPNO: enabled return to launcher for wet and boyz

Changed paths:
    engines/hypno/hypno.h


diff --git a/engines/hypno/hypno.h b/engines/hypno/hypno.h
index 20fb2a48015..48630402ffd 100644
--- a/engines/hypno/hypno.h
+++ b/engines/hypno/hypno.h
@@ -426,6 +426,10 @@ public:
 	void initSegment(ArcadeShooting *arc) override;
 	byte *getTargetColor(Common::String name, int levelId) override;
 
+	bool hasFeature(EngineFeature f) const override {
+		return (f == kSupportsReturnToLauncher);
+	}
+
 private:
 	Common::String getLocalizedString(const Common::String name);
 	uint16 getNextChar(const Common::String &str, uint32 &c);
@@ -652,6 +656,10 @@ public:
 
 	Common::BitArray _font05;
 	Common::BitArray _font08;
+
+	bool hasFeature(EngineFeature f) const override {
+		return (f == kSupportsReturnToLauncher);
+	}
 };
 
 } // End of namespace Hypno




More information about the Scummvm-git-logs mailing list