ActorUtil::LoadFromActorFile -> ActorUtil::LoadFromNode

This commit is contained in:
Glenn Maynard
2005-10-11 02:51:05 +00:00
parent 201fe355ac
commit c9cb09dd36
6 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -105,7 +105,7 @@ retry:
}
Actor* ActorUtil::LoadFromActorFile( const CString& sDir, const XNode* pNode )
Actor* ActorUtil::LoadFromNode( const CString& sDir, const XNode* pNode )
{
ASSERT( pNode );
@@ -266,7 +266,7 @@ Actor* ActorUtil::MakeActor( const CString &sPath_ )
return new Actor;
}
CString sDir = Dirname( sPath );
return LoadFromActorFile( sDir, &xml );
return ActorUtil::LoadFromNode( sDir, &xml );
}
case FT_Bitmap:
case FT_Movie: