diff options
-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; } |