diff --git a/stepmania/src/ActorUtil.cpp b/stepmania/src/ActorUtil.cpp index 125de1f849..b66f46132f 100644 --- a/stepmania/src/ActorUtil.cpp +++ b/stepmania/src/ActorUtil.cpp @@ -297,11 +297,11 @@ static void MergeActorXML( XNode *pChild, const XNode *pParent ) if( pChild->GetAttr(p->first) != NULL ) { RString sWarning = - ssprintf( "%s: \"%s\" overrides \"%s\" in %s", + ssprintf( "%s: overriding \"%s\" in %s node \"%s\"", ActorUtil::GetWhere(pParent).c_str(), sName.c_str(), - p->second->GetValue().c_str(), - ActorUtil::GetWhere(pChild).c_str() ); + ActorUtil::GetWhere(pChild).c_str(), + pParent->GetName().c_str() ); Dialog::OK( sWarning, "XML_ATTRIB_OVERRIDE" ); } pChild->AppendAttrFrom( p->first, p->second->Copy() );