From 6d95f8ca618b2f881fb1dd83705d5cc33a6da886 Mon Sep 17 00:00:00 2001 From: Martin Kiewitz Date: Thu, 15 Oct 2009 15:07:47 +0000 Subject: 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 --- engines/sci/engine/vm.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'engines') diff --git a/engines/sci/engine/vm.cpp b/engines/sci/engine/vm.cpp index 69dde0d63c..43d8ae53b3 100644 --- a/engines/sci/engine/vm.cpp +++ b/engines/sci/engine/vm.cpp @@ -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; } -- cgit v1.2.3