aboutsummaryrefslogtreecommitdiff
path: root/engines/m4/graphics.h
diff options
context:
space:
mode:
authorPaul Gilbert2010-05-28 10:17:16 +0000
committerPaul Gilbert2010-05-28 10:17:16 +0000
commit145eacd491ce54c8c33d80dda2ec3ec3416a3f87 (patch)
tree3a459e61c73a0ee73e916c8cb6756d1181e8f0c4 /engines/m4/graphics.h
parentdad3ad86eac7954f0e5e1932b628c68d22e890a8 (diff)
downloadscummvm-rg350-145eacd491ce54c8c33d80dda2ec3ec3416a3f87.tar.gz
scummvm-rg350-145eacd491ce54c8c33d80dda2ec3ec3416a3f87.tar.bz2
scummvm-rg350-145eacd491ce54c8c33d80dda2ec3ec3416a3f87.zip
Implemented needed methods for scrolling surfaces horizontally or vertically
svn-id: r49286
Diffstat (limited to 'engines/m4/graphics.h')
-rw-r--r--engines/m4/graphics.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/m4/graphics.h b/engines/m4/graphics.h
index 6d0a82ad25..c140140f97 100644
--- a/engines/m4/graphics.h
+++ b/engines/m4/graphics.h
@@ -173,7 +173,8 @@ public:
dest->copyFrom(this, destX, destY, depth, depthsSurface, scale, transparentColour);
}
-
+ void scrollX(int xAmount);
+ void scrollY(int yAmount);
void translate(RGBList *list, bool isTransparent = false);
};