[Scummvm-cvs-logs] SF.net SVN: scummvm:[51540] scummvm/trunk/engines/sci/engine/vm.cpp
m_kiewitz at users.sourceforge.net
m_kiewitz at users.sourceforge.net
Sat Jul 31 16:38:29 CEST 2010
Revision: 51540
http://scummvm.svn.sourceforge.net/scummvm/?rev=51540&view=rev
Author: m_kiewitz
Date: 2010-07-31 14:38:28 +0000 (Sat, 31 Jul 2010)
Log Message:
-----------
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.
Modified Paths:
--------------
scummvm/trunk/engines/sci/engine/vm.cpp
Modified: scummvm/trunk/engines/sci/engine/vm.cpp
===================================================================
--- scummvm/trunk/engines/sci/engine/vm.cpp 2010-07-31 14:29:22 UTC (rev 51539)
+++ scummvm/trunk/engines/sci/engine/vm.cpp 2010-07-31 14:38:28 UTC (rev 51540)
@@ -231,7 +231,7 @@
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;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list