[Scummvm-cvs-logs] scummvm master -> 4e415c3fefc3a724958209f01839edb6a2fe4e0f

dreammaster dreammaster at scummvm.org
Sat Nov 28 00:57:13 CET 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:
4e415c3fef ACCESS: Fix loading character data in English demo


Commit: 4e415c3fefc3a724958209f01839edb6a2fe4e0f
    https://github.com/scummvm/scummvm/commit/4e415c3fefc3a724958209f01839edb6a2fe4e0f
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2015-11-27T18:56:44-05:00

Commit Message:
ACCESS: Fix loading character data in English demo

Changed paths:
    engines/access/char.cpp



diff --git a/engines/access/char.cpp b/engines/access/char.cpp
index 76dfca6..3e95208 100644
--- a/engines/access/char.cpp
+++ b/engines/access/char.cpp
@@ -31,7 +31,7 @@ CharEntry::CharEntry(const byte *data, AccessEngine *vm) {
 	Common::MemoryReadStream s(data, 999);
 
 	_charFlag = s.readByte();
-	if (vm->getGameID() == GType_MartianMemorandum) {
+	if (vm->getGameID() != GType_Amazon || vm->isDemo()) {
 		_screenFile.load(s);
 		_estabIndex = s.readSint16LE();
 	} else {






More information about the Scummvm-git-logs mailing list