Commit a8fd29c8 authored by cutealien's avatar cutealien

Fix uninitialized variable in q3-loader (found by Hendu).


git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@3992 dfc29bdd-3216-0410-991c-e03cc46cb475
parent bf5890e8
...@@ -1812,7 +1812,7 @@ void CQ3LevelMesh::cleanMesh(SMesh *m, const bool texture0important) ...@@ -1812,7 +1812,7 @@ void CQ3LevelMesh::cleanMesh(SMesh *m, const bool texture0important)
u32 i = 0; u32 i = 0;
s32 blockstart = -1; s32 blockstart = -1;
s32 blockcount; s32 blockcount = 0;
while( i < m->MeshBuffers.size()) while( i < m->MeshBuffers.size())
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment