Add a few case stubs for moondemo.

svn-id: r17868
This commit is contained in:
Travis Howell 2005-04-30 04:05:02 +00:00
parent c20ee1e634
commit a08f1b8c69

View File

@ -1027,6 +1027,10 @@ uint8 *ScummEngine_v72he::drawWizImage(int resNum, int state, int x1, int y1, in
// RAW 16 bits in 555 format
warning("drawWizImage: Unhandled wiz compression type %d", comp);
break;
case 5:
// Used in Moonbase Commander
warning("drawWizImage: Unhandled wiz compression type %d", comp);
break;
default:
error("drawWizImage: Unhandled wiz compression type %d", comp);
}
@ -1799,6 +1803,11 @@ uint8 ScummEngine_v90he::getWizPixelColor(int resNum, int state, int x, int y, i
case 1:
color = _wiz.getWizPixelColor(wizd, x, y, w, h, VAR(VAR_WIZ_TCOLOR));
break;
case 5:
// Used in Moonbase Commander
color = 1;
warning("getWizPixelColor: Unhandled wiz compression type %d", c);
break;
default:
error("getWizPixelColor: Unhandled wiz compression type %d", c);
break;