[Scummvm-git-logs] scummvm master -> e2c447ad8128ceb1ab9285b23b9e495ef8f5b779

AndywinXp noreply at scummvm.org
Tue Jan 17 10:51:25 UTC 2023


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:
e2c447ad81 SCUMM: Fix regression in Actor::animateActor from 546fd42749d


Commit: e2c447ad8128ceb1ab9285b23b9e495ef8f5b779
    https://github.com/scummvm/scummvm/commit/e2c447ad8128ceb1ab9285b23b9e495ef8f5b779
Author: eientei (einstein95 at users.noreply.github.com)
Date: 2023-01-17T11:51:21+01:00

Commit Message:
SCUMM: Fix regression in Actor::animateActor from 546fd42749d

This would cause the meteor explosion in the Maniac Mansion (V2) intro
to not play. Bug reported in Discord by Vanfanel

Changed paths:
    engines/scumm/actor.cpp


diff --git a/engines/scumm/actor.cpp b/engines/scumm/actor.cpp
index 473b5eb05d9..29d2b0b02fb 100644
--- a/engines/scumm/actor.cpp
+++ b/engines/scumm/actor.cpp
@@ -2669,7 +2669,7 @@ void Actor::animateActor(int anim) {
 		// fall through
 	default:
 		if (_vm->_game.version <= 2)
-			startAnimActor(chore);
+			startAnimActor(anim >> 2);
 		else
 			startAnimActor(anim);
 	}




More information about the Scummvm-git-logs mailing list