diff options
author | Herman Semenov <GermanAizek@yandex.ru> | 2022-09-02 09:40:02 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-02 08:40:02 +0200 |
commit | d733e03430cf623d722b2efe87872b68bb3d4d1f (patch) | |
tree | 768d2ab2ecfb92b40d3acda1f2057a2cf5ea8f2e /source/Irrlicht/CB3DMeshFileLoader.cpp | |
parent | f0766c845f85c2f467843f20cf811c62cd2402c7 (diff) | |
download | irrlicht-d733e03430cf623d722b2efe87872b68bb3d4d1f.tar.xz |
Fix glHint parameter, type size and add more null checks (#130)
Diffstat (limited to 'source/Irrlicht/CB3DMeshFileLoader.cpp')
-rw-r--r-- | source/Irrlicht/CB3DMeshFileLoader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Irrlicht/CB3DMeshFileLoader.cpp b/source/Irrlicht/CB3DMeshFileLoader.cpp index 05f9f0f..ca86a6a 100644 --- a/source/Irrlicht/CB3DMeshFileLoader.cpp +++ b/source/Irrlicht/CB3DMeshFileLoader.cpp @@ -26,7 +26,7 @@ namespace scene //! Constructor
CB3DMeshFileLoader::CB3DMeshFileLoader(scene::ISceneManager* smgr)
-: AnimatedMesh(0), B3DFile(0), NormalsInFile(false),
+: AnimatedMesh(0), B3DFile(0), VerticesStart(0), NormalsInFile(false),
HasVertexColors(false), ShowWarning(true)
{
#ifdef _DEBUG
|