aboutsummaryrefslogtreecommitdiff
path: root/engines/hopkins/graphics.h
diff options
context:
space:
mode:
authorPaul Gilbert2013-03-09 09:44:46 -0500
committerPaul Gilbert2013-03-09 09:44:46 -0500
commit55c024494d80b343fc23d8e534153fd9c873f040 (patch)
treee90629159edb97fa791ef7b250aad8e96130d6a1 /engines/hopkins/graphics.h
parent83480c5784dd4193fa6b5dd3bb2f7a75ac67715d (diff)
downloadscummvm-rg350-55c024494d80b343fc23d8e534153fd9c873f040.tar.gz
scummvm-rg350-55c024494d80b343fc23d8e534153fd9c873f040.tar.bz2
scummvm-rg350-55c024494d80b343fc23d8e534153fd9c873f040.zip
HOPKINS: Fix problem with scrolling not working properly
Diffstat (limited to 'engines/hopkins/graphics.h')
-rw-r--r--engines/hopkins/graphics.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hopkins/graphics.h b/engines/hopkins/graphics.h
index 33edc6f86c..3739bbf3a3 100644
--- a/engines/hopkins/graphics.h
+++ b/engines/hopkins/graphics.h
@@ -129,7 +129,7 @@ public:
void resetRefreshRects();
void addDirtyRect(int x1, int y1, int x2, int y2);
void addDirtyRect(const Common::Rect &r) { addDirtyRect(r.left, r.top, r.right, r.bottom); }
- void addRefreshRect(const Common::Rect &r);
+ void addRefreshRect(int x1, int y1, int x2, int y2);
void displayDirtyRects();
void displayRefreshRects();
void copySurface(const byte *surface, int x1, int y1, int width, int height, byte *destSurface, int destX, int destY);