diff options
author | Johannes Schickel | 2010-11-05 00:10:26 +0000 |
---|---|---|
committer | Johannes Schickel | 2010-11-05 00:10:26 +0000 |
commit | 8c997e26088481340927a779d16d2eb482c14293 (patch) | |
tree | b6923b5716c30708e1c55abf66578bbca80fdc0c | |
parent | 7d71d07075e1331816688f11be11318ccbd32cd0 (diff) | |
download | scummvm-rg350-8c997e26088481340927a779d16d2eb482c14293.tar.gz scummvm-rg350-8c997e26088481340927a779d16d2eb482c14293.tar.bz2 scummvm-rg350-8c997e26088481340927a779d16d2eb482c14293.zip |
SCI: Add a default case to a switch statement to silence some compiler warnings.
svn-id: r54078
-rw-r--r-- | engines/sci/graphics/picture.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/sci/graphics/picture.cpp b/engines/sci/graphics/picture.cpp index 6f2ca9e26d..707096740a 100644 --- a/engines/sci/graphics/picture.cpp +++ b/engines/sci/graphics/picture.cpp @@ -760,8 +760,12 @@ void GfxPicture::drawVectorData(byte *data, int dataSize) { case 154: // SQ3: intro, ship gets sucked in _screen->ditherForceMemorial(0xD0); break; + default: + break; } break; + default: + break; } } return; |