diff options
author | Martin Kiewitz | 2010-07-31 14:38:28 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-07-31 14:38:28 +0000 |
commit | f54b9e3527ac89f1030795a97b787fef4a047850 (patch) | |
tree | 8ae239910a4d53afbd238918befede20a401f81c | |
parent | 7f3ce51031a02d2b54e9cee3aaa7a35bce3c7a92 (diff) | |
download | scummvm-rg350-f54b9e3527ac89f1030795a97b787fef4a047850.tar.gz scummvm-rg350-f54b9e3527ac89f1030795a97b787fef4a047850.tar.bz2 scummvm-rg350-f54b9e3527ac89f1030795a97b787fef4a047850.zip |
SCI: removing warning about uninitialized parameters
didn't cause any harm till now and it seems testers get irritated by it. Switching it to VM debug level 2.
svn-id: r51540
-rw-r--r-- | engines/sci/engine/vm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/vm.cpp b/engines/sci/engine/vm.cpp index d849d3e008..56d16e798e 100644 --- a/engines/sci/engine/vm.cpp +++ b/engines/sci/engine/vm.cpp @@ -231,7 +231,7 @@ static reg_t validate_read_var(reg_t *r, reg_t *stack_base, int type, int max, i case VAR_PARAM: // Out-of-bounds read for a parameter that goes onto stack and hits an uninitialized temp // We return 0 currently in that case - warning("Read for a parameter goes out-of-bounds, onto the stack and gets uninitialized temp"); + debugC(2, kDebugLevelVM, "[VM] Read for a parameter goes out-of-bounds, onto the stack and gets uninitialized temp"); return NULL_REG; default: break; |