aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Gilbert2019-02-17 15:20:16 -0800
committerPaul Gilbert2019-02-17 15:20:16 -0800
commit8bf993ebf2e6292add4ebc97f9dda99bd3235ce4 (patch)
treef6597dccccb1e4cace85e93959764b630458d7ca
parent8fcf009668c6975fbe8e7eac2e676f9aa1f87421 (diff)
downloadscummvm-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.cpp2
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