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
tanolino 2022-07-08 10:19:50 +02:00 committed by GitHub
parent a1f9a299e9
commit 24d110199a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ protected:
const char* mBuffer;
/** Size of the file, in bytes */
unsigned int mFileSize;
size_t mFileSize;
/** Output scene */
aiScene* mScene;