[Scummvm-git-logs] scummvm master -> 98b20059ba5147514305d65083b848924e86e515

dreammaster dreammaster at scummvm.org
Thu Apr 5 05:02:03 CEST 2018


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:
98b20059ba XEEN: Refine bounds of scene drawing clip area


Commit: 98b20059ba5147514305d65083b848924e86e515
    https://github.com/scummvm/scummvm/commit/98b20059ba5147514305d65083b848924e86e515
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2018-04-04T23:02:02-04:00

Commit Message:
XEEN: Refine bounds of scene drawing clip area

Changed paths:
    engines/xeen/sprites.cpp


diff --git a/engines/xeen/sprites.cpp b/engines/xeen/sprites.cpp
index 2a5d18e..7b484b5 100644
--- a/engines/xeen/sprites.cpp
+++ b/engines/xeen/sprites.cpp
@@ -147,7 +147,7 @@ void SpriteResource::drawOffset(XSurface &dest, uint16 offset, const Common::Poi
 		bounds = Common::Rect(0, 0, dest.w, dest.h);
 	}
 	if (flags & SPRFLAG_SCENE_CLIPPED) {
-		bounds.clip(Common::Rect(8, 8, 230, 149));
+		bounds.clip(Common::Rect(8, 8, 223, 141));
 	}
 
 	uint16 scaleMaskXCopy = scaleMaskX;





More information about the Scummvm-git-logs mailing list