diff options
author | Travis Howell | 2012-08-14 16:46:19 +1000 |
---|---|---|
committer | Travis Howell | 2012-08-14 16:46:19 +1000 |
commit | 54e6283cfa5018401b793ce993cf308fec1cb3ef (patch) | |
tree | bb3f031423ef8d16d6f4ab1f24e566877d37bfe8 /engines/cine | |
parent | c83e3d54f25c1e77cff094d2e26da576e935587d (diff) | |
download | scummvm-rg350-54e6283cfa5018401b793ce993cf308fec1cb3ef.tar.gz scummvm-rg350-54e6283cfa5018401b793ce993cf308fec1cb3ef.tar.bz2 scummvm-rg350-54e6283cfa5018401b793ce993cf308fec1cb3ef.zip |
CINE: Fix compile error caused by excess ;
Diffstat (limited to 'engines/cine')
-rw-r--r-- | engines/cine/gfx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cine/gfx.cpp b/engines/cine/gfx.cpp index c51420e62b..d080d4300b 100644 --- a/engines/cine/gfx.cpp +++ b/engines/cine/gfx.cpp @@ -1823,7 +1823,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; |