aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/surface.h
diff options
context:
space:
mode:
authorPaul Gilbert2015-06-02 21:26:42 -0400
committerPaul Gilbert2015-06-02 21:26:42 -0400
commit1f9d1e9c16da9fa6484b49dc4e4b05a89387116d (patch)
treefc3b29cd8a20af386814e2cc9ab539a2f96b33fc /engines/sherlock/surface.h
parentfdd220e9f77658d765ecf2c9d2e5fb4f022663ea (diff)
downloadscummvm-rg350-1f9d1e9c16da9fa6484b49dc4e4b05a89387116d.tar.gz
scummvm-rg350-1f9d1e9c16da9fa6484b49dc4e4b05a89387116d.tar.bz2
scummvm-rg350-1f9d1e9c16da9fa6484b49dc4e4b05a89387116d.zip
SHERLOCK: Implement RT drawAllShapes and support methods
Diffstat (limited to 'engines/sherlock/surface.h')
-rw-r--r--engines/sherlock/surface.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sherlock/surface.h b/engines/sherlock/surface.h
index 663f87f37f..506de0b682 100644
--- a/engines/sherlock/surface.h
+++ b/engines/sherlock/surface.h
@@ -102,19 +102,19 @@ public:
* Draws an image frame at a given position within this surface with transparency
*/
void transBlitFrom(const ImageFrame &src, const Common::Point &pt,
- bool flipped = false, int overrideColor = 0);
+ bool flipped = false, int overrideColor = 0, int scaleVal = 256);
/**
* Draws a surface at a given position within this surface with transparency
*/
void transBlitFrom(const Surface &src, const Common::Point &pt,
- bool flipped = false, int overrideColor = 0);
+ bool flipped = false, int overrideColor = 0, int scaleVal = 256);
/**
* 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);
+ bool flipped = false, int overrideColor = 0, int scaleVal = 256);
/**
* Fill a given area of the surface with a given color