diff options
author | Paul Gilbert | 2019-02-17 15:20:16 -0800 |
---|---|---|
committer | Paul Gilbert | 2019-02-17 15:20:16 -0800 |
commit | 8bf993ebf2e6292add4ebc97f9dda99bd3235ce4 (patch) | |
tree | f6597dccccb1e4cace85e93959764b630458d7ca | |
parent | 8fcf009668c6975fbe8e7eac2e676f9aa1f87421 (diff) | |
download | scummvm-rg350-8bf993ebf2e6292add4ebc97f9dda99bd3235ce4.tar.gz scummvm-rg350-8bf993ebf2e6292add4ebc97f9dda99bd3235ce4.tar.bz2 scummvm-rg350-8bf993ebf2e6292add4ebc97f9dda99bd3235ce4.zip |
GLK: FROTZ: Fix transparency for glyphs in buffer area
-rw-r--r-- | engines/glk/picture.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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 |