[Scummvm-git-logs] scummvm master -> f2ae4b1b87cb7fd3b6c383c1385e4db5e6174893

mgerhardy martin.gerhardy at gmail.com
Sun Oct 25 08:21:30 UTC 2020


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:
f2ae4b1b87 TWINE: Add detection for UK version of Little Big Adventure (#2557)


Commit: f2ae4b1b87cb7fd3b6c383c1385e4db5e6174893
    https://github.com/scummvm/scummvm/commit/f2ae4b1b87cb7fd3b6c383c1385e4db5e6174893
Author: Torbjörn Andersson (eriktorbjorn at telia.com)
Date: 2020-10-25T09:21:27+01:00

Commit Message:
TWINE: Add detection for UK version of Little Big Adventure (#2557)

Changed paths:
    engines/twine/detection.cpp
    engines/twine/twine.cpp


diff --git a/engines/twine/detection.cpp b/engines/twine/detection.cpp
index d3d56ade5e..1a06f48372 100644
--- a/engines/twine/detection.cpp
+++ b/engines/twine/detection.cpp
@@ -59,6 +59,15 @@ static const ADGameDescription twineGameDescriptions[] = {
 		ADGF_UNSTABLE,
 		GUIO1(GUIO_NONE)
 	},
+	{
+		"twine",
+		"",
+		AD_ENTRY1s("text.hqr", "31d880f658cc6cc6d6cf70df732aec4f", 248829),
+		Common::EN_GRB,
+		Common::kPlatformDOS,
+		ADGF_UNSTABLE,
+		GUIO1(GUIO_NONE)
+	},
 	AD_TABLE_END_MARKER
 };
 
diff --git a/engines/twine/twine.cpp b/engines/twine/twine.cpp
index 6e80e30979..e8cdbdee43 100644
--- a/engines/twine/twine.cpp
+++ b/engines/twine/twine.cpp
@@ -68,6 +68,11 @@ namespace TwinE {
 
 TwinEEngine::TwinEEngine(OSystem *system, Common::Language language, uint32 flags)
     : Engine(system), _gameLang(language), _gameFlags(flags), _rnd("twine") {
+	// Add default file directories
+	const Common::FSNode gameDataDir(ConfMan.get("path"));
+	SearchMan.addSubDirectoryMatching(gameDataDir, "fla");
+	SearchMan.addSubDirectoryMatching(gameDataDir, "vox");
+
 	setDebugger(new GUI::Debugger());
 	_actor = new Actor(this);
 	_animations = new Animations(this);




More information about the Scummvm-git-logs mailing list