diff options
author | Vincent Hamm | 2012-08-09 23:24:17 -0700 |
---|---|---|
committer | D G Turner | 2012-08-11 00:11:21 +0100 |
commit | c6c7b16089517917da755b02683a17712ffa39a2 (patch) | |
tree | 1b463f14a44df87812787127098d120298d47817 /engines | |
parent | 92b5ee0a48e7393220e7f89d58e241565e9d00af (diff) | |
download | scummvm-rg350-c6c7b16089517917da755b02683a17712ffa39a2.tar.gz scummvm-rg350-c6c7b16089517917da755b02683a17712ffa39a2.tar.bz2 scummvm-rg350-c6c7b16089517917da755b02683a17712ffa39a2.zip |
CINE: Slight cleanup.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/cine/gfx.cpp | 3 | ||||
-rw-r--r-- | engines/cine/gfx.h | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/engines/cine/gfx.cpp b/engines/cine/gfx.cpp index b22e57400d..742c6606b0 100644 --- a/engines/cine/gfx.cpp +++ b/engines/cine/gfx.cpp @@ -1225,7 +1225,6 @@ void OSRenderer::renderOverlay(const Common::List<overlay>::iterator &it) { int len, idx, width, height; ObjectStruct *obj; AnimData *sprite; - byte *mask; byte color; switch (it->type) { @@ -1819,7 +1818,7 @@ void OSRenderer::drawSprite(overlay *overlayPtr, const byte *spritePtr, int16 wi } delete[] pMask; -}; +} void drawSpriteRaw2(const byte *spritePtr, byte transColor, int16 width, int16 height, byte *page, int16 x, int16 y) { int16 i, j; diff --git a/engines/cine/gfx.h b/engines/cine/gfx.h index 8b21d839e4..6ff5b08b77 100644 --- a/engines/cine/gfx.h +++ b/engines/cine/gfx.h @@ -292,7 +292,6 @@ 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(); |