aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorMartin Kiewitz2009-10-15 15:07:47 +0000
committerMartin Kiewitz2009-10-15 15:07:47 +0000
commit6d95f8ca618b2f881fb1dd83705d5cc33a6da886 (patch)
tree0221177f5d31892ea8c60ec1a3b570c9c8b488fb /engines
parent766820d72c252328a91f64782fdc3aabf11166a7 (diff)
downloadscummvm-rg350-6d95f8ca618b2f881fb1dd83705d5cc33a6da886.tar.gz
scummvm-rg350-6d95f8ca618b2f881fb1dd83705d5cc33a6da886.tar.bz2
scummvm-rg350-6d95f8ca618b2f881fb1dd83705d5cc33a6da886.zip
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
Diffstat (limited to 'engines')
-rw-r--r--engines/sci/engine/vm.cpp3
1 files changed, 2 insertions, 1 deletions
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;
}