diff options
Diffstat (limited to 'source/Irrlicht/COBJMeshFileLoader.cpp')
-rw-r--r-- | source/Irrlicht/COBJMeshFileLoader.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/Irrlicht/COBJMeshFileLoader.cpp b/source/Irrlicht/COBJMeshFileLoader.cpp index cdd953b..8746eb6 100644 --- a/source/Irrlicht/COBJMeshFileLoader.cpp +++ b/source/Irrlicht/COBJMeshFileLoader.cpp @@ -70,9 +70,9 @@ IAnimatedMesh* COBJMeshFileLoader::createMesh(io::IReadFile* file) const u32 WORD_BUFFER_LENGTH = 512;
- core::array<core::vector3df, core::irrAllocatorFast<core::vector3df> > vertexBuffer(1000);
- core::array<core::vector3df, core::irrAllocatorFast<core::vector3df> > normalsBuffer(1000);
- core::array<core::vector2df, core::irrAllocatorFast<core::vector2df> > textureCoordBuffer(1000);
+ core::array<core::vector3df> vertexBuffer(1000);
+ core::array<core::vector3df> normalsBuffer(1000);
+ core::array<core::vector2df> textureCoordBuffer(1000);
SObjMtl * currMtl = new SObjMtl();
Materials.push_back(currMtl);
|