aboutsummaryrefslogtreecommitdiff
path: root/engines/lab/image.h
diff options
context:
space:
mode:
authorFilippos Karapetis2015-12-03 15:06:45 +0200
committerWillem Jan Palenstijn2015-12-23 21:33:49 +0100
commit8f4d9c9c05e71036e80b47db380eff7922087fd5 (patch)
tree63729fe80c3346314e82f402a6bd6dff3b752d71 /engines/lab/image.h
parent359eda3b9728548b654e16b01df39b1c54b81fdd (diff)
downloadscummvm-rg350-8f4d9c9c05e71036e80b47db380eff7922087fd5.tar.gz
scummvm-rg350-8f4d9c9c05e71036e80b47db380eff7922087fd5.tar.bz2
scummvm-rg350-8f4d9c9c05e71036e80b47db380eff7922087fd5.zip
LAB: Image accepts a Common::File now
Diffstat (limited to 'engines/lab/image.h')
-rw-r--r--engines/lab/image.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lab/image.h b/engines/lab/image.h
index 450c177373..8f4d0f844f 100644
--- a/engines/lab/image.h
+++ b/engines/lab/image.h
@@ -41,7 +41,7 @@ public:
Image() : _width(0), _height(0), _imageData(0) {}
Image(int w, int h, byte *d) : _width(w), _height(h), _imageData(d) {}
- Image(byte **buffer);
+ Image(Common::File *s);
void drawImage(uint16 x, uint16 y);
void drawMaskImage(uint16 x, uint16 y);