mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 15:21:40 +00:00
TINSEL: Add an initial incomplete graphics decoder for DW1 Mac
Part of the game graphics is now shown
This commit is contained in:
parent
e21a547667
commit
6c0a24fd7c
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user