[Scummvm-git-logs] scummvm master -> 8bf993ebf2e6292add4ebc97f9dda99bd3235ce4

dreammaster paulfgilbert at gmail.com
Mon Feb 18 00:20:25 CET 2019


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:
8bf993ebf2 GLK: FROTZ: Fix transparency for glyphs in buffer area


Commit: 8bf993ebf2e6292add4ebc97f9dda99bd3235ce4
    https://github.com/scummvm/scummvm/commit/8bf993ebf2e6292add4ebc97f9dda99bd3235ce4
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2019-02-17T15:20:16-08:00

Commit Message:
GLK: FROTZ: Fix transparency for glyphs in buffer area

Changed paths:
    engines/glk/picture.cpp


diff --git a/engines/glk/picture.cpp b/engines/glk/picture.cpp
index 35e5b8f..a47d8bf 100644
--- a/engines/glk/picture.cpp
+++ b/engines/glk/picture.cpp
@@ -216,7 +216,7 @@ void Picture::drawPicture(const Common::Point &destPos, const Common::Rect &box)
 	Graphics::ManagedSurface s(*g_vm->_screen, box);
 	Common::Point pt(destPos.x - box.left, destPos.y - box.top);
 
-	s.blitFrom(*this, pt);
+	s.transBlitFrom(*this, pt, _transColor);
 }
 
 } // End of namespace Glk





More information about the Scummvm-git-logs mailing list