From 8de571556012eae3cff13b3b86f8554b5ba070b4 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Wed, 30 Jun 2010 10:17:54 +0000 Subject: Removed deprecated destAdjust parameters from the frame drawing code svn-id: r50524 --- engines/m4/graphics.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/m4/graphics.h') diff --git a/engines/m4/graphics.h b/engines/m4/graphics.h index 5e97d4f09b..c2eb11c575 100644 --- a/engines/m4/graphics.h +++ b/engines/m4/graphics.h @@ -173,7 +173,7 @@ public: void frameRect(const Common::Rect &r, uint8 color); void fillRect(const Common::Rect &r, uint8 color); void copyFrom(M4Surface *src, const Common::Rect &srcBounds, int destX, int destY, int transparentColour = -1); - void copyFrom(M4Surface *src, int destX, int destY, Common::Point destAdjust, int depth, M4Surface *depthSurface, + void copyFrom(M4Surface *src, int destX, int destY, int depth, M4Surface *depthSurface, int scale, int transparentColour = -1); void update() { @@ -196,7 +196,7 @@ public: } inline void copyTo(M4Surface *dest, int destX, int destY, int depth, M4Surface *depthsSurface, int scale, int transparentColour = -1) { - dest->copyFrom(this, destX, destY, Common::Point(0, 0), depth, depthsSurface, scale, transparentColour); + dest->copyFrom(this, destX, destY, depth, depthsSurface, scale, transparentColour); } void scrollX(int xAmount); -- cgit v1.2.3