From 25823c979be16b43cb61e188e17a5f7800533ec3 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 5 Jul 2005 23:46:08 +0000 Subject: [PATCH] remove the .model format; it's obsoleted by .xml Type="Model" --- stepmania/src/ActorUtil.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stepmania/src/ActorUtil.cpp b/stepmania/src/ActorUtil.cpp index 81fe8b7c0b..41cc6ec888 100644 --- a/stepmania/src/ActorUtil.cpp +++ b/stepmania/src/ActorUtil.cpp @@ -443,8 +443,7 @@ FileType ActorUtil::GetFileType( const CString &sPath ) else if( sExt=="sprite" ) return FT_Sprite; else if( - sExt=="txt" || - sExt=="model" ) return FT_Model; + sExt=="txt" ) return FT_Model; else return FT_Invalid; }