TINSEL: Add an initial incomplete graphics decoder for DW1 Mac

Part of the game graphics is now shown
This commit is contained in:
Filippos Karapetis 2012-12-11 03:06:50 +02:00
parent e21a547667
commit 6c0a24fd7c

View File

@ -896,6 +896,21 @@ void DrawObject(DRAWOBJECT *pObj) {
default:
error("Unknown drawing type %d", typeId);
}
} else if (TinselV1Mac) {
// Tinsel v1 Mac decoders
// TODO: Finish this
switch (typeId) {
case 0x01:
case 0x41:
// TODO
break;
case 0x08:
case 0x48:
WrtAll(pObj, srcPtr, destPtr, typeId >= 0x40);
break;
default:
error("Unknown drawing type %d", typeId);
}
} else if (TinselV1) {
// Tinsel v1 decoders
switch (typeId) {