[Scummvm-git-logs] scummvm master -> 30a14b6355eb5c21ca4ddb053e5fa172dd55d444

npjg nathanael.gentrydb8 at gmail.com
Thu Jun 18 22:41:09 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:
30a14b6355 Revert "DIRECTOR: Fix another careless typo"


Commit: 30a14b6355eb5c21ca4ddb053e5fa172dd55d444
    https://github.com/scummvm/scummvm/commit/30a14b6355eb5c21ca4ddb053e5fa172dd55d444
Author: Nathanael Gentry (nathanael.gentrydb8 at gmail.com)
Date: 2020-06-18T18:40:49-04:00

Commit Message:
Revert "DIRECTOR: Fix another careless typo"

This reverts commit 30f6ea5018d4430f7b720a0d0f34c9f727b2cb89.

Changed paths:
    engines/director/ink.cpp


diff --git a/engines/director/ink.cpp b/engines/director/ink.cpp
index 3d99b6dda4..608e697263 100644
--- a/engines/director/ink.cpp
+++ b/engines/director/ink.cpp
@@ -36,7 +36,7 @@ void Score::inkBasedBlit(Graphics::ManagedSurface *maskSurface, const Graphics::
 	if (ink == kInkTypeCopy || ink == kInkTypeTransparent) {
 		t = drawRect;
 	} else {
-		t = spriteSurface.w, spriteSurface.h;
+		t = Common::Rect(spriteSurface.w, spriteSurface.h);
 		t.moveTo(drawRect.left, drawRect.top);
 	}
 




More information about the Scummvm-git-logs mailing list