From 3fe2a401934ec6a36defc2cbe457ff5398a46340 Mon Sep 17 00:00:00 2001 From: aramis_acg Date: Fri, 29 Apr 2011 17:37:08 +0000 Subject: [PATCH] # 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 --- code/ASEParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/ASEParser.cpp b/code/ASEParser.cpp index 647c721f8..ae1e9fbfe 100644 --- a/code/ASEParser.cpp +++ b/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;