diff options
author | Travis Howell | 2005-08-15 13:30:37 +0000 |
---|---|---|
committer | Travis Howell | 2005-08-15 13:30:37 +0000 |
commit | 4d46b37b6913e7c994a2495b52ede725779ca8c8 (patch) | |
tree | 5ec911bc214e44621fc4a012ebff52adb86c4fda /scumm | |
parent | 76bd872c48d10aae4924bcd8a8d30adf22440574 (diff) | |
download | scummvm-rg350-4d46b37b6913e7c994a2495b52ede725779ca8c8.tar.gz scummvm-rg350-4d46b37b6913e7c994a2495b52ede725779ca8c8.tar.bz2 scummvm-rg350-4d46b37b6913e7c994a2495b52ede725779ca8c8.zip |
Switch to debug, since an actor name isn't always set.
ie actor 14 in The Dig
svn-id: r18690
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/actor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/actor.cpp b/scumm/actor.cpp index 70196e9b26..444dcdbfb4 100644 --- a/scumm/actor.cpp +++ b/scumm/actor.cpp @@ -1868,7 +1868,7 @@ void Actor::walkActorOld() { byte *Actor::getActorName() { byte *ptr = _vm->getResourceAddress(rtActorName, _number); if (ptr == NULL) { - error("Failed to find name of actor %d", _number); + debug(0, "Failed to find name of actor %d", _number); } return ptr; } |