- fbx: fix "could not read property name" warn message.

pull/14/head
Alexander Gessler 2012-07-21 22:45:23 +02:00
parent fd828a1b44
commit b7456307dd
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ std::string PeekPropertyName(const Element& element)
{
ai_assert(element.KeyToken().StringContents() == "P");
const TokenList& tok = element.Tokens();
if(tok.size() < 5) {
if(tok.size() < 4) {
return "";
}