break up arch stuff into smaller .cpp files to fix smpackage build and not pull in unnecessary stuff

This commit is contained in:
Chris Danford
2005-12-16 04:16:09 +00:00
parent ddce0cc239
commit 353e0c5b6e
55 changed files with 647 additions and 327 deletions
+2 -1
View File
@@ -9,6 +9,7 @@
#include "RageUtil.h"
#include "EnumHelper.h"
#include "XmlFile.h"
#include "XmlFileUtil.h"
#include "LuaManager.h"
#include "Foreach.h"
@@ -368,7 +369,7 @@ Actor* ActorUtil::MakeActor( const CString &sPath_, const XNode *pParent )
case FT_Xml:
{
XNode xml;
if( !xml.LoadFromFile(sPath) )
if( !XmlFileUtil::LoadFromFileShowErrors(xml, sPath) )
{
// XNode will warn about the error
return new Actor;