diff options
-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 |