From 0f17ab443783e0eea405ac5f8f6df73f70f30451 Mon Sep 17 00:00:00 2001 From: David Rose Date: Fri, 15 Apr 2005 20:13:08 +0000 Subject: [PATCH] remove unnecessary assertion --- panda/src/gobj/geom.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/panda/src/gobj/geom.cxx b/panda/src/gobj/geom.cxx index 77e4c9a243..ded68ae0e6 100644 --- a/panda/src/gobj/geom.cxx +++ b/panda/src/gobj/geom.cxx @@ -1120,7 +1120,7 @@ recompute_bound() { ++vcount; } } - nassertr(vcount == num_vertices, bound); + //nassertr(vcount == num_vertices, bound); } else { // Indexed case. @@ -1134,7 +1134,7 @@ recompute_bound() { ++vindex; } } - nassertr(vindex == num_indices, bound); + //nassertr(vindex == num_indices, bound); } const LPoint3f *vertices_begin = &vertices[0];