[Scummvm-cvs-logs] scummvm master -> b2be23ba42bf0e8694d2b335ba7ee3619fcff1b2

dreammaster dreammaster at scummvm.org
Sun Dec 6 22:21:00 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:
b2be23ba42 ACCESS: Fix character loading for floppy version


Commit: b2be23ba42bf0e8694d2b335ba7ee3619fcff1b2
    https://github.com/scummvm/scummvm/commit/b2be23ba42bf0e8694d2b335ba7ee3619fcff1b2
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2015-12-06T16:20:24-05:00

Commit Message:
ACCESS: Fix character loading for floppy version

Changed paths:
    engines/access/char.cpp



diff --git a/engines/access/char.cpp b/engines/access/char.cpp
index 3e95208..2afb81d 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_Amazon || vm->isDemo()) {
+	if (vm->getGameID() != GType_Amazon || !vm->isCD()) {
 		_screenFile.load(s);
 		_estabIndex = s.readSint16LE();
 	} else {






More information about the Scummvm-git-logs mailing list