From 8bf993ebf2e6292add4ebc97f9dda99bd3235ce4 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 17 Feb 2019 15:20:16 -0800 Subject: GLK: FROTZ: Fix transparency for glyphs in buffer area --- engines/glk/picture.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/glk/picture.cpp b/engines/glk/picture.cpp index 35e5b8fea2..a47d8bf3d6 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 -- cgit v1.2.3