SCI: pointer_add -> error changed to warning b/c iceman does it. Just ignoring it doesnt seem to have any effect on the game

svn-id: r45123
This commit is contained in:
Martin Kiewitz 2009-10-15 15:07:47 +00:00
parent 766820d72c
commit 6d95f8ca61

View File

@ -477,7 +477,8 @@ static reg_t pointer_add(EngineState *s, reg_t base, int offset) {
break;
default:
error("[VM] Error: Attempt to add %d to pointer %04x:%04x: Pointer arithmetics of this type unsupported", offset, PRINT_REG(base));
// Changed this to warning, because iceman does this during dancing with girl
warning("[VM] Error: Attempt to add %d to pointer %04x:%04x: Pointer arithmetics of this type unsupported", offset, PRINT_REG(base));
return NULL_REG;
}