[Scummvm-cvs-logs] scummvm master -> 91558e5f25a2ede20906a6550182dc30b8078567
m-kiewitz
m_kiewitz at users.sourceforge.net
Fri Jun 12 19:16:41 CEST 2015
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:
91558e5f25 SHERLOCK: 3DO: disable portraits for 3DO
Commit: 91558e5f25a2ede20906a6550182dc30b8078567
https://github.com/scummvm/scummvm/commit/91558e5f25a2ede20906a6550182dc30b8078567
Author: Martin Kiewitz (m_kiewitz at users.sourceforge.net)
Date: 2015-06-12T19:16:04+02:00
Commit Message:
SHERLOCK: 3DO: disable portraits for 3DO
3DO does not include portrait data and instead used videos
Changed paths:
engines/sherlock/sherlock.cpp
diff --git a/engines/sherlock/sherlock.cpp b/engines/sherlock/sherlock.cpp
index a7214aa..bc150ca 100644
--- a/engines/sherlock/sherlock.cpp
+++ b/engines/sherlock/sherlock.cpp
@@ -107,6 +107,12 @@ void SherlockEngine::initialize() {
// Load game settings
loadConfig();
+
+ if (getPlatform() == Common::kPlatform3DO) {
+ // Disable portraits on 3DO
+ // 3DO does not include portrait data
+ _people->_portraitsOn = false;
+ }
}
Common::Error SherlockEngine::run() {
More information about the Scummvm-git-logs
mailing list