瀏覽代碼

Merge branch 'master' into master

Kim Kulling 3 年之前
父節點
當前提交
c9fc957535
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      code/AssetLib/FBX/FBXBinaryTokenizer.cpp

+ 1 - 1
code/AssetLib/FBX/FBXBinaryTokenizer.cpp

@@ -472,7 +472,7 @@ void TokenizeBinary(TokenList& output_tokens, const char* input, size_t length)
     }
     catch (const DeadlyImportError& e)
     {
-        if (!is64bits && (length > std::numeric_limits<std::uint32_t>::max())) {
+        if (!is64bits && (length > std::numeric_limits<uint32_t>::max())) {
             throw DeadlyImportError("The FBX file is invalid. This may be because the content is too big for this older version (", ai_to_string(version), ") of the FBX format. (", e.what(), ")");
         }
         throw;