Pārlūkot izejas kodu

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.
tanolino 3 gadi atpakaļ
vecāks
revīzija
24d110199a
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      code/AssetLib/STL/STLLoader.h

+ 1 - 1
code/AssetLib/STL/STLLoader.h

@@ -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;