Merge pull request #2697 from ffontaine/master
Fix FBXConverter: use proper 64-bit constantpull/2698/head^2
commit
e63123de75
|
@ -77,7 +77,7 @@ namespace Assimp {
|
|||
|
||||
#define MAGIC_NODE_TAG "_$AssimpFbx$"
|
||||
|
||||
#define CONVERT_FBX_TIME(time) static_cast<double>(time) / 46186158000L
|
||||
#define CONVERT_FBX_TIME(time) static_cast<double>(time) / 46186158000LL
|
||||
|
||||
FBXConverter::FBXConverter(aiScene* out, const Document& doc, bool removeEmptyBones )
|
||||
: defaultMaterialIndex()
|
||||
|
|
Loading…
Reference in New Issue