Stub out some opcodes, to get the CD version go a bit further (thanks Willem)

svn-id: r17548
This commit is contained in:
Max Horn
2005-04-11 19:34:51 +00:00
parent 14adfd3cac
commit ddecb30635
+15
View File
@@ -407,6 +407,18 @@ void inter_drawOperations(void) {
scen_interLoadCurLayer();
break;
case 32:
// FIXME
warning("unimplemented drawOperation: %d", cmd);
inter_evalExpr(0);
break;
case 33:
// FIXME
warning("unimplemented drawOperation: %d", cmd);
WRITE_VAR(5, 32767);
break;
case 48:
i = inter_load16();
draw_fontToSprite[i].sprite = inter_load16();
@@ -422,6 +434,9 @@ void inter_drawOperations(void) {
draw_fontToSprite[i].width = -1;
draw_fontToSprite[i].height = -1;
break;
default:
warning("unimplemented drawOperation: %d", cmd);
}
}