[Scummvm-cvs-logs] scummvm master -> 9b8fa20c7610567475c5b41678d41fa618adc49e

dreammaster dreammaster at scummvm.org
Sat Jan 17 23:30:39 CET 2015


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:
9b8fa20c76 MADS: Fix horizontal flipping of scene background sprites


Commit: 9b8fa20c7610567475c5b41678d41fa618adc49e
    https://github.com/scummvm/scummvm/commit/9b8fa20c7610567475c5b41678d41fa618adc49e
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2015-01-17T17:29:08-05:00

Commit Message:
MADS: Fix horizontal flipping of scene background sprites

Changed paths:
    engines/mads/scene_data.cpp



diff --git a/engines/mads/scene_data.cpp b/engines/mads/scene_data.cpp
index 7233e42..d0e96be 100644
--- a/engines/mads/scene_data.cpp
+++ b/engines/mads/scene_data.cpp
@@ -266,7 +266,7 @@ void SceneInfo::load(int sceneId, int variant, const Common::String &resName,
 
 		MSprite *spr = asset->getFrame(si._frameNumber);
 		bgSurface.copyFrom(spr, si._position, si._depth, &depthSurface,
-			si._scale, spr->getTransparencyIndex());
+			si._scale, false, spr->getTransparencyIndex());
 	}
 
 	// Free the sprite sets






More information about the Scummvm-git-logs mailing list