Skip to content

Commit

Permalink
GLK: FROTZ: Fix transparency for glyphs in buffer area
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Feb 17, 2019
1 parent 8fcf009 commit 8bf993e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/glk/picture.cpp
Expand Up @@ -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

0 comments on commit 8bf993e

Please sign in to comment.