Support for FBX file sizes more than 4GB

This commit is contained in:
Mike Samsonov
2019-05-14 15:24:23 +01:00
parent 524d8c281e
commit c58ed8da22
5 changed files with 15 additions and 15 deletions

View File

@@ -86,7 +86,7 @@ const char* TokenTypeString(TokenType t)
// ------------------------------------------------------------------------------------------------
std::string AddOffset(const std::string& prefix, const std::string& text, unsigned int offset)
std::string AddOffset(const std::string& prefix, const std::string& text, size_t offset)
{
return static_cast<std::string>( (Formatter::format() << prefix << " (offset 0x" << std::hex << offset << ") " << text) );
}