Camera scrolling only effects subtitles in SCUMM4-6 games. Fixes bug #1329482.

svn-id: r21274
This commit is contained in:
Travis Howell 2006-03-14 09:33:37 +00:00
parent c196543572
commit f6d69c6d45

View File

@ -419,7 +419,7 @@ void ScummEngine::CHARSET_1() {
if (!_haveMsg)
return;
if (!(_game.features & GF_NEW_CAMERA) && !(_game.id == GID_ZAK && (_game.platform == Common::kPlatformFMTowns) && getTalkingActor() == 0xFF)) {
if (_game.version >= 4 && _game.version <= 6) {
if ((camera._dest.x / 8) != (camera._cur.x / 8) || camera._cur.x != camera._last.x)
return;
}