# 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
pull/1/head
aramis_acg 2011-04-29 17:37:08 +00:00
parent a5210b2765
commit 3fe2a40193
1 changed files with 1 additions and 1 deletions

View File

@ -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;