[Scummvm-git-logs] scummvm master -> 8f98cede33a0e361354be0bef6e0a65b17987bb9

digitall 547637+digitall at users.noreply.github.com
Sat Sep 26 11:10:12 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:
8f98cede33 COMPOSER: fix regression macintosh darby & gregory


Commit: 8f98cede33a0e361354be0bef6e0a65b17987bb9
    https://github.com/scummvm/scummvm/commit/8f98cede33a0e361354be0bef6e0a65b17987bb9
Author: BLooperZ (blooperz at users.noreply.github.com)
Date: 2020-09-26T12:10:09+01:00

Commit Message:
COMPOSER: fix regression macintosh darby & gregory

Changed paths:
    engines/composer/composer.cpp


diff --git a/engines/composer/composer.cpp b/engines/composer/composer.cpp
index 97c0cd572f..9c9d2ee2ed 100644
--- a/engines/composer/composer.cpp
+++ b/engines/composer/composer.cpp
@@ -91,6 +91,11 @@ Common::Error ComposerEngine::run() {
 		}
 	}
 
+	Common::String gameId(getGameId());
+	if (getPlatform() == Common::kPlatformMacintosh && (gameId == "darby" || gameId == "gregory")) {
+		_directoriesToStrip = 0;
+	}
+
 	uint width = 640;
 	if (_bookIni.hasKey("Width", "Common"))
 		width = atoi(getStringFromConfig("Common", "Width").c_str());




More information about the Scummvm-git-logs mailing list