Explorar el Código

tweak

undefined
Benjamin ‘Touky’ Huet Sam Hocevar <sam@hocevar.net> hace 11 años
padre
commit
794f1a5086
Se han modificado 1 ficheros con 4 adiciones y 4 borrados
  1. +4
    -4
      test/meshviewer.cpp

+ 4
- 4
test/meshviewer.cpp Ver fichero

@@ -337,11 +337,11 @@ public:
if (m_mesh_id == m_meshes.Count() - 1)
m_mesh_id++;
//Create a new mesh
EasyMesh* tmp = new EasyMesh();
if (tmp->Compile(mesh.C()))
m_meshes.Push(tmp);
EasyMesh* em = new EasyMesh();
if (em->Compile(mesh.C()))
m_meshes.Push(em);
else
delete(tmp);
delete(em);
}
}



Cargando…
Cancelar
Guardar