From 3ed7a817e27c820f22c589315188c30665e17744 Mon Sep 17 00:00:00 2001 From: cignoni Date: Sun, 4 Mar 2012 17:48:04 +0000 Subject: [PATCH] yet another surviving m.hasSomething -> has something (m) --- apps/shadevis/visshader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/shadevis/visshader.h b/apps/shadevis/visshader.h index e1369b38..835f1b9a 100644 --- a/apps/shadevis/visshader.h +++ b/apps/shadevis/visshader.h @@ -379,7 +379,7 @@ template class VertexVisShader : public VisShader VertexVisShader(MESH_TYPE &me):VisShader(me) { // la mesh DEVE avere colore per vertice - if(! m.HasPerVertexColor()) assert(0); + if(! HasPerVertexColor(m)) assert(0); } void Init() { VV.resize(m.vert.size()); }