mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-27 05:32:45 +00:00
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:
parent
766820d72c
commit
6d95f8ca61
@ -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;
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user