Ooops, duplicate code.

svn-id: r12028
This commit is contained in:
Travis Howell 2003-12-30 06:26:52 +00:00
parent d8f657adc0
commit f0c9f690e0

View file

@ -2958,12 +2958,9 @@ void ScummEngine_v6::o6_stampObject() {
int objnum = getObjectIndex(object);
if (objnum == -1)
return;
if (objnum != -1) {
_objs[objnum].x_pos = x * 8;
_objs[objnum].y_pos = y * 8;
}
_objs[objnum].x_pos = x * 8;
_objs[objnum].y_pos = y * 8;
putState(object, state);
drawObject(objnum, 0);
warning("o6_stampObject: (%d at (%d,%d) state %d)", object, x, y, state);