aboutsummaryrefslogtreecommitdiff
path: root/scumm/gfx.h
diff options
context:
space:
mode:
authorMax Horn2003-05-10 12:59:32 +0000
committerMax Horn2003-05-10 12:59:32 +0000
commit114af3159e7c4fc552972a460f845e982fbc6ef5 (patch)
treec941da35b4115d80046ace0f8d05f1026cdd78ba /scumm/gfx.h
parent97197f95ea5159e3b8caa5cc7f92fdbf0523a9ed (diff)
downloadscummvm-rg350-114af3159e7c4fc552972a460f845e982fbc6ef5.tar.gz
scummvm-rg350-114af3159e7c4fc552972a460f845e982fbc6ef5.tar.bz2
scummvm-rg350-114af3159e7c4fc552972a460f845e982fbc6ef5.zip
added a 'width' parameter to drawBitmap (contrary to 'numstrips', it specifies the full width of the image passed in, not how much we shoul draw of it) - this will be used for the new V2 drawBitmap code; renamed drawBitmap parameter 'h' to 'height'
svn-id: r7412
Diffstat (limited to 'scumm/gfx.h')
-rw-r--r--scumm/gfx.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/scumm/gfx.h b/scumm/gfx.h
index acdaa44eec..d59973e0fe 100644
--- a/scumm/gfx.h
+++ b/scumm/gfx.h
@@ -161,7 +161,8 @@ protected:
void updateDirtyScreen(VirtScreen *vs);
public:
- void drawBitmap(byte *ptr, VirtScreen *vs, int x, int y, const int h, int stripnr, int numstrip, byte flag);
+ void drawBitmap(byte *ptr, VirtScreen *vs, int x, int y, const int width, const int height,
+ int stripnr, int numstrip, byte flag);
void clearUpperMask();
void disableZBuffer() { _disable_zbuffer++; }