Commit 7e9e5f17 authored by hybrid's avatar hybrid

Removed some debug tests left over in previous revision

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@1950 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 60814bf8
......@@ -1013,11 +1013,8 @@ bool CXMeshFileLoader::parseDataObjectMesh(SXMesh &mesh)
const u32 size=((dataformat>>8)&0xf)*sizeof(core::vector2df);
for (u32 j=0; j<mesh.Vertices.size(); ++j)
{
dataptr += size/2;
mesh.TCoords2.push_back(*((core::vector2df*)(dataptr)));
os::Printer::log(core::stringc(mesh.TCoords2.getLast().X).c_str());
os::Printer::log(core::stringc(mesh.TCoords2.getLast().Y).c_str());
dataptr += size/2;
dataptr += size;
}
}
if (!checkForOneFollowingSemicolons())
......
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