aboutsummaryrefslogtreecommitdiff
path: root/source/Irrlicht/COBJMeshFileLoader.cpp
diff options
context:
space:
mode:
authorparadust7 <102263465+paradust7@users.noreply.github.com>2022-05-21 14:56:36 -0700
committerGitHub <noreply@github.com>2022-05-21 23:56:36 +0200
commit3e81f3809806a921a7914f6b9c4b02c8532fbc9f (patch)
treebe6164ce6abfaad98852fc8807d65b3168fc1539 /source/Irrlicht/COBJMeshFileLoader.cpp
parent593103a26148b7154b159b9ae728fd53b4e7ca84 (diff)
downloadirrlicht-3e81f3809806a921a7914f6b9c4b02c8532fbc9f.tar.xz
Make irrArray backed by std::vector (#101)
Diffstat (limited to 'source/Irrlicht/COBJMeshFileLoader.cpp')
-rw-r--r--source/Irrlicht/COBJMeshFileLoader.cpp6
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);