diff options
Diffstat (limited to 'engines/sherlock/graphics.cpp')
-rw-r--r-- | engines/sherlock/graphics.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/engines/sherlock/graphics.cpp b/engines/sherlock/graphics.cpp index 63988a2f30..1a0144bc4b 100644 --- a/engines/sherlock/graphics.cpp +++ b/engines/sherlock/graphics.cpp @@ -91,6 +91,14 @@ void Surface::blitFrom(const Graphics::Surface &src, const Common::Point &pt, } /** +* Draws an image frame at a given position within this surface with transparency +*/ +void Surface::transBlitFrom(const ImageFrame &src, const Common::Point &pt, + bool flipped, int overrideColor) { + transBlitFrom(src._frame, pt + src._offset, flipped, overrideColor); +} + +/** * Draws a surface at a given position within this surface with transparency */ void Surface::transBlitFrom(const Graphics::Surface &src, const Common::Point &pt, |