From 35ca5329ec83d65367a3d1de53f2f11270582bc4 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 14 Oct 2006 03:55:54 +0000 Subject: [PATCH] this doesn't need to be fatal --- stepmania/src/ActorUtil.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/ActorUtil.cpp b/stepmania/src/ActorUtil.cpp index ea80d514a5..8e90bc8dd9 100644 --- a/stepmania/src/ActorUtil.cpp +++ b/stepmania/src/ActorUtil.cpp @@ -446,8 +446,8 @@ Actor* ActorUtil::MakeActor( const RString &sPath_, const XNode *pParent, Actor return ActorUtil::Create( "Model", &xml, pParentActor ); } default: - RageException::Throw("File \"%s\" has unknown type, \"%s\".", - sPath.c_str(), FileTypeToString(ft).c_str() ); + LOG->Warn( "File \"%s\" has unknown type, \"%s\".", sPath.c_str(), FileTypeToString(ft).c_str() ); + return new Actor; } }