aboutsummaryrefslogtreecommitdiff
path: root/engines/made/screen.h
diff options
context:
space:
mode:
authorJohannes Schickel2012-06-16 02:34:23 +0200
committerJohannes Schickel2012-06-16 02:38:59 +0200
commit79dfc7be97c89fcc97332d2e05e22b683e05a7cb (patch)
tree9615d7ebe783701f0549ecf3fd09df3334a9d356 /engines/made/screen.h
parent2e97e043fb8610d1d85bbd3e5e2d7ad4990ef8a0 (diff)
downloadscummvm-rg350-79dfc7be97c89fcc97332d2e05e22b683e05a7cb.tar.gz
scummvm-rg350-79dfc7be97c89fcc97332d2e05e22b683e05a7cb.tar.bz2
scummvm-rg350-79dfc7be97c89fcc97332d2e05e22b683e05a7cb.zip
MADE: Get rid of casts on OSystem::copyRectToScreen calls.
Diffstat (limited to 'engines/made/screen.h')
-rw-r--r--engines/made/screen.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/made/screen.h b/engines/made/screen.h
index a61ecabdce..266ac3811d 100644
--- a/engines/made/screen.h
+++ b/engines/made/screen.h
@@ -176,7 +176,7 @@ public:
Graphics::Surface *lockScreen();
void unlockScreen();
void showWorkScreen();
- void copyRectToScreen(const byte *buf, int pitch, int x, int y, int w, int h);
+ void copyRectToScreen(const void *buf, int pitch, int x, int y, int w, int h);
void updateScreenAndWait(int delay);
int16 addToSpriteList(int16 index, int16 xofs, int16 yofs);