Browse Source

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

Alexander Gessler 13 năm trước cách đây
mục cha
commit
b7456307dd
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      code/FBXProperties.cpp

+ 1 - 1
code/FBXProperties.cpp

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