Skip to content

Commit

Permalink
QDENGINE: Fix debug log message
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Aug 17, 2024
1 parent d5cd1e7 commit bcc69b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/qdengine/qdcore/qd_named_object_indexer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ qdNamedObjectIndexer &qdNamedObjectIndexer::instance() {
}

bool qdNamedObjectIndexer::qdNamedObjectReferenceLink::resolve() {
if (qdGameDispatcher * dp = qdGameDispatcher::get_dispatcher()) {
if (qdGameDispatcher *dp = qdGameDispatcher::get_dispatcher()) {
_object = dp->get_named_object(&_reference);
if (!_object) {
debugC(3, kDebugLog, "qdNamedObjectReferenceLink::resolve() failed\n%s", _reference.toString().c_str());
debugC(3, kDebugLog, "qdNamedObjectReferenceLink::resolve() failed '%s'", transCyrillic(_reference.toString()));
} else
return true;
}
Expand Down

0 comments on commit bcc69b3

Please sign in to comment.