aboutsummaryrefslogtreecommitdiff
path: root/scumm/scummvm.cpp
diff options
context:
space:
mode:
authorJames Brown2002-12-28 12:42:55 +0000
committerJames Brown2002-12-28 12:42:55 +0000
commit669e5b8ebc0395c4951749d254a7a32e4e4ea328 (patch)
treeb0df5e27eafe5000dcc786b45ca993deb2ebf53e /scumm/scummvm.cpp
parent4ccd134b3741296dcc8ea5e43e32491747ac46cb (diff)
downloadscummvm-rg350-669e5b8ebc0395c4951749d254a7a32e4e4ea328.tar.gz
scummvm-rg350-669e5b8ebc0395c4951749d254a7a32e4e4ea328.tar.bz2
scummvm-rg350-669e5b8ebc0395c4951749d254a7a32e4e4ea328.zip
de-verbalise some debug messages (move from debug(1) to debug(2)).. so we can see printDebug lines easier
svn-id: r6227
Diffstat (limited to 'scumm/scummvm.cpp')
-rw-r--r--scumm/scummvm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp
index f54c42ad07..42239973f4 100644
--- a/scumm/scummvm.cpp
+++ b/scumm/scummvm.cpp
@@ -1247,7 +1247,7 @@ Actor *Scumm::derefActor(int id)
Actor *Scumm::derefActorSafe(int id, const char *errmsg)
{
if (id < 1 || id >= NUM_ACTORS) {
- if (_debugMode)
+ if (_debugLevel > 1)
warning
("Invalid actor %d in %s (script %d, opcode 0x%x) - This is potentially a BIG problem.",
id, errmsg, vm.slot[_curExecScript].number, _opcode);