[Scummvm-git-logs] scummvm master -> 4bec36f93f84adecbc29618c13315bfe38bef156

djsrv dservilla at gmail.com
Fri Aug 20 12:38:58 UTC 2021


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:
4bec36f93f DIRECTOR: Do not call renderSprites() in b_updateStage


Commit: 4bec36f93f84adecbc29618c13315bfe38bef156
    https://github.com/scummvm/scummvm/commit/4bec36f93f84adecbc29618c13315bfe38bef156
Author: djsrv (dservilla at gmail.com)
Date: 2021-08-20T08:36:44-04:00

Commit Message:
DIRECTOR: Do not call renderSprites() in b_updateStage

This function updates the sprites from the score. We do not want to do
that, as it wipes any non-puppet changes made by Lingo. Notably, this
broke the cursor in Chop Suey.

Changed paths:
    engines/director/lingo/lingo-builtins.cpp


diff --git a/engines/director/lingo/lingo-builtins.cpp b/engines/director/lingo/lingo-builtins.cpp
index a5a2b5d1e9..9fe96a9e17 100644
--- a/engines/director/lingo/lingo-builtins.cpp
+++ b/engines/director/lingo/lingo-builtins.cpp
@@ -2291,7 +2291,6 @@ void LB::b_updateStage(int nargs) {
 
 	Score *score = movie->getScore();
 
-	score->renderSprites(score->getCurrentFrame());
 	if (movie->_videoPlayback)
 		score->renderVideo();
 




More information about the Scummvm-git-logs mailing list