Use size_t for file size instead of unsigned int
This is one step to help us open files with more then 4 GB size.pull/4630/head
parent
a1f9a299e9
commit
24d110199a
|
@ -109,7 +109,7 @@ protected:
|
||||||
const char* mBuffer;
|
const char* mBuffer;
|
||||||
|
|
||||||
/** Size of the file, in bytes */
|
/** Size of the file, in bytes */
|
||||||
unsigned int mFileSize;
|
size_t mFileSize;
|
||||||
|
|
||||||
/** Output scene */
|
/** Output scene */
|
||||||
aiScene* mScene;
|
aiScene* mScene;
|
||||||
|
|
Loading…
Reference in New Issue