Browse Source

# bugfix [3294475] - ASE BUMP map record not read

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@974 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
aramis_acg 14 years ago
parent
commit
3fe2a40193
1 changed files with 1 additions and 1 deletions
  1. 1 1
      code/ASEParser.cpp

+ 1 - 1
code/ASEParser.cpp

@@ -751,7 +751,7 @@ void Parser::ParseLV3MapBlock(Texture& map)
 				std::string temp;
 				if(!ParseString(temp,"*MAP_CLASS"))
 					SkipToNextToken();
-				if (temp != "Bitmap")
+				if (temp != "Bitmap" && temp != "Normal Bump")
 				{
 					DefaultLogger::get()->warn("ASE: Skipping unknown map type: " + temp);
 					parsePath = false;