[Scummvm-git-logs] scummvm master -> 59d92fbc0d29cd51a3e3ac424853ad353ef16e88

npjg nathanael.gentrydb8 at gmail.com
Mon Jun 15 11:01:15 UTC 2020


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:
59d92fbc0d DIRECTOR: Run standard transform on stage colour


Commit: 59d92fbc0d29cd51a3e3ac424853ad353ef16e88
    https://github.com/scummvm/scummvm/commit/59d92fbc0d29cd51a3e3ac424853ad353ef16e88
Author: Nathanael Gentry (nathanael.gentrydb8 at gmail.com)
Date: 2020-06-15T07:01:09-04:00

Commit Message:
DIRECTOR: Run standard transform on stage colour

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


diff --git a/engines/director/lingo/lingo-the.cpp b/engines/director/lingo/lingo-the.cpp
index fe708fe907..bc0f65ed7d 100644
--- a/engines/director/lingo/lingo-the.cpp
+++ b/engines/director/lingo/lingo-the.cpp
@@ -639,7 +639,7 @@ void Lingo::setTheEntity(int entity, Datum &id, int field, Datum &d) {
 		break;
 	case kTheStageColor: {
 		Score *score = _vm->getCurrentScore();
-		score->_stageColor = d.asInt();
+		score->_stageColor = _vm->transformColor(d.asInt());
 		if (score->_surface) {
 			score->_surface->clear(score->_stageColor);
 			score->renderFrame(score->getCurrentFrame(), true);




More information about the Scummvm-git-logs mailing list