diff options
Diffstat (limited to 'engines/sherlock/surface.h')
-rw-r--r-- | engines/sherlock/surface.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/sherlock/surface.h b/engines/sherlock/surface.h index 1cb78db072..ccabf02a23 100644 --- a/engines/sherlock/surface.h +++ b/engines/sherlock/surface.h @@ -53,12 +53,6 @@ private: * Draws a sub-section of a surface at a given position within this surface */ void blitFrom(const Graphics::Surface &src, const Common::Point &pt, const Common::Rect &srcBounds); - - /** - * Draws a surface at a given position within this surface with transparency - */ - void transBlitFrom(const Graphics::Surface &src, const Common::Point &pt, - bool flipped = false, int overrideColor = 0); protected: Graphics::Surface _surface; @@ -117,6 +111,12 @@ public: bool flipped = false, int overrideColor = 0); /** + * Draws a surface at a given position within this surface with transparency + */ + void transBlitFrom(const Graphics::Surface &src, const Common::Point &pt, + bool flipped = false, int overrideColor = 0); + + /** * Fill a given area of the surface with a given color */ void fillRect(int x1, int y1, int x2, int y2, byte color); |