Browse Source

oops, false -> NULL

David Rose 21 years ago
parent
commit
ad1f64ba56
1 changed files with 1 additions and 1 deletions
  1. 1 1
      panda/src/pgraph/nodePath.cxx

+ 1 - 1
panda/src/pgraph/nodePath.cxx

@@ -2818,7 +2818,7 @@ has_tex_transform(TextureStage *stage) const {
 ////////////////////////////////////////////////////////////////////
 CPT(TransformState) NodePath::
 get_tex_transform(TextureStage *stage) const {
-  nassertr_always(!is_empty(), false);
+  nassertr_always(!is_empty(), NULL);
 
   const RenderAttrib *attrib =
     node()->get_attrib(TexMatrixAttrib::get_class_type());