aboutsummaryrefslogtreecommitdiff
path: root/engines/cine/gfx.h
diff options
context:
space:
mode:
authorVincent Hamm2012-08-09 23:19:46 -0700
committerD G Turner2012-08-10 14:38:31 +0100
commit92b5ee0a48e7393220e7f89d58e241565e9d00af (patch)
treebbcb9af0ae5fa22beb55aa8dcc537883908982cc /engines/cine/gfx.h
parent571fa943106009b99a39bbe0a729f9c32afa8a9a (diff)
downloadscummvm-rg350-92b5ee0a48e7393220e7f89d58e241565e9d00af.tar.gz
scummvm-rg350-92b5ee0a48e7393220e7f89d58e241565e9d00af.tar.bz2
scummvm-rg350-92b5ee0a48e7393220e7f89d58e241565e9d00af.zip
CINE: Fix masking in Operation Stealth.
Diffstat (limited to 'engines/cine/gfx.h')
-rw-r--r--engines/cine/gfx.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/cine/gfx.h b/engines/cine/gfx.h
index 737c49cc36..8b21d839e4 100644
--- a/engines/cine/gfx.h
+++ b/engines/cine/gfx.h
@@ -223,6 +223,7 @@ private:
protected:
void drawSprite(const ObjectStruct &obj);
+ void drawSprite(overlay *overlayPtr, const byte *spritePtr, int16 width, int16 height, byte *page, int16 x, int16 y, byte transparentColor, byte bpp);
int drawChar(char character, int x, int y);
void drawBackground();
void renderOverlay(const Common::List<overlay>::iterator &it);
@@ -291,6 +292,7 @@ void drawSpriteRaw(const byte *spritePtr, const byte *maskPtr, int16 width, int1
void gfxDrawPlainBoxRaw(int16 x1, int16 y1, int16 x2, int16 y2, byte color, byte *page);
void drawSpriteRaw2(const byte *spritePtr, byte transColor, int16 width, int16 height, byte *page, int16 x, int16 y);
void maskBgOverlay(const byte *spritePtr, const byte *maskPtr, int16 width, int16 height, byte *page, int16 x, int16 y);
+void drawOsSprite(overlay *overlayPtr, const byte *spritePtr, int16 width, int16 height, byte *page, int16 x, int16 y, byte transparentColor, byte bpp);
void fadeFromBlack();
void fadeToBlack();