warn, don't throw on an invalid Actor

This commit is contained in:
Chris Danford
2005-06-07 09:44:38 +00:00
parent 6babd726f6
commit 33fa6acb3a
+2 -1
View File
@@ -254,7 +254,8 @@ Actor* ActorUtil::LoadFromActorFile( const CString& sAniDir, const XNode* pNode
{
CString sError = ssprintf( "The actor file in '%s' is missing the File attribute or has an invalid Class \"%s\"",
sAniDir.c_str(), sClass.c_str() );
RageException::Throw( sError );
Dialog::OK( sError );
return NULL;
}
CString sNewPath = bIsAbsolutePath ? sFile : sAniDir+sFile;