diff options
author | Travis Howell | 2005-09-24 00:44:01 +0000 |
---|---|---|
committer | Travis Howell | 2005-09-24 00:44:01 +0000 |
commit | 379fef7077eeeb0125f2d1f733f29e13ced10028 (patch) | |
tree | 022d6fcc8a0d346ac7c1c1704f8f5aeb070903a2 /scumm | |
parent | 82a3d88586a77b400163369a0b2dd367cf1fc62a (diff) | |
download | scummvm-rg350-379fef7077eeeb0125f2d1f733f29e13ced10028.tar.gz scummvm-rg350-379fef7077eeeb0125f2d1f733f29e13ced10028.tar.bz2 scummvm-rg350-379fef7077eeeb0125f2d1f733f29e13ced10028.zip |
Remove dummy cases for additional codecs in moonbase.
If added, they should be placed in LogicHE.
svn-id: r18869
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/wiz_he.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/scumm/wiz_he.cpp b/scumm/wiz_he.cpp index 2ce77d130a..3ee89d1260 100644 --- a/scumm/wiz_he.cpp +++ b/scumm/wiz_he.cpp @@ -1093,10 +1093,6 @@ uint8 *Wiz::drawWizImage(int resNum, int state, int x1, int y1, int zorder, int case 2: copyRaw16BitWizImage(dst, wizd, cw, ch, x1, y1, width, height, &rScreen, flags, palPtr, color); break; - case 5: - // Used in Moonbase Commander - debug(0, "drawWizImage: Unhandled wiz compression type %d", comp); - break; default: error("drawWizImage: Unhandled wiz compression type %d", comp); } @@ -1937,11 +1933,6 @@ int Wiz::isWizPixelNonTransparent(int resNum, int state, int x, int y, int flags // Used baseball2003 debug(0, "isWizPixelNonTransparent: Unhandled wiz compression type %d", c); break; - case 4: - case 5: - // Used in Moonbase Commander - debug(0, "isWizPixelNonTransparent: Unhandled wiz compression type %d", c); - break; default: error("isWizPixelNonTransparent: Unhandled wiz compression type %d", c); break; @@ -1968,12 +1959,6 @@ uint8 Wiz::getWizPixelColor(int resNum, int state, int x, int y, int flags) { case 1: color = getWizPixelColor(wizd, x, y, w, h, _vm->VAR(_vm->VAR_WIZ_TCOLOR)); break; - case 4: - case 5: - // Used in Moonbase Commander - color = 1; - debug(0, "getWizPixelColor: Unhandled wiz compression type %d", c); - break; default: error("getWizPixelColor: Unhandled wiz compression type %d", c); break; |