2
0
Эх сурвалжийг харах

ASE rejects ASC files completely now.

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@380 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
aramis_acg 16 жил өмнө
parent
commit
fb33a6bfc4
1 өөрчлөгдсөн 2 нэмэгдсэн , 2 устгасан
  1. 2 2
      code/ASELoader.cpp

+ 2 - 2
code/ASELoader.cpp

@@ -76,7 +76,7 @@ bool ASEImporter::CanRead( const std::string& pFile, IOSystem* pIOHandler, bool
 	// check file extension 
 	const std::string extension = GetExtension(pFile);
 	
-	if( extension == "ase" || extension == "ask" || extension == "asc")
+	if( extension == "ase" || extension == "ask")
 		return true;
 
 	if ((!extension.length() || cs) && pIOHandler) {
@@ -89,7 +89,7 @@ bool ASEImporter::CanRead( const std::string& pFile, IOSystem* pIOHandler, bool
 // ------------------------------------------------------------------------------------------------
 void ASEImporter::GetExtensionList(std::string& append)
 {
-	append.append("*.ase;*.ask;*.asc");
+	append.append("*.ase;*.ask");
 }
 
 // ------------------------------------------------------------------------------------------------