[Scummvm-cvs-logs] CVS: scummvm/scumm wiz_he.cpp,2.94,2.95
kirben
kirben at users.sourceforge.net
Fri Sep 23 17:45:56 CEST 2005
Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9084/scumm
Modified Files:
wiz_he.cpp
Log Message:
Remove dummy cases for additional codecs in moonbase.
If added, they should be placed in LogicHE.
Index: wiz_he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/wiz_he.cpp,v
retrieving revision 2.94
retrieving revision 2.95
diff -u -d -r2.94 -r2.95
--- wiz_he.cpp 31 Aug 2005 20:39:52 -0000 2.94
+++ wiz_he.cpp 24 Sep 2005 00:44:01 -0000 2.95
@@ -1093,10 +1093,6 @@
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 @@
// 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 @@
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;
More information about the Scummvm-git-logs
mailing list