aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/vm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/engine/vm.cpp')
-rw-r--r--engines/sci/engine/vm.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/sci/engine/vm.cpp b/engines/sci/engine/vm.cpp
index 18e1ef7866..3539032760 100644
--- a/engines/sci/engine/vm.cpp
+++ b/engines/sci/engine/vm.cpp
@@ -121,15 +121,13 @@ static int validate_variable(reg_t *r, reg_t *stack_base, int type, int max, int
if (index < 0 || index >= max) {
char txt[200];
char tmp[40];
- sprintf(txt, "[VM] Attempt to use invalid %s variable %04x ", names[type], index);
+ sprintf(txt, "[VM] validate_variable(): Attempt to use invalid %s variable %04x ", names[type], index);
if (max == 0)
strcat(txt, "(variable type invalid)");
else {
sprintf(tmp, "(out of range [%d..%d])", 0, max - 1);
strcat(txt, tmp);
}
- sprintf(tmp, " in %s, line %d\n", __FILE__, line);
- strcat(txt, tmp);
if (debug_weak_validations)
warning(txt);