Browse Source

Merge branch 'release/1.9.x'

rdb 10 years ago
parent
commit
efa8633cb0
1 changed files with 2 additions and 2 deletions
  1. 2 2
      panda/src/gobj/geomVertexColumn.cxx

+ 2 - 2
panda/src/gobj/geomVertexColumn.cxx

@@ -353,9 +353,9 @@ make_packer() const {
     return new Packer_color;
     return new Packer_color;
 
 
   case C_normal:
   case C_normal:
-    if (get_num_values() != 3) {
+    if (get_num_values() != 3 && get_num_values() != 4) {
       gobj_cat.error()
       gobj_cat.error()
-        << "GeomVertexColumn with contents C_normal must have 3 components!\n";
+        << "GeomVertexColumn with contents C_normal must have 3 or 4 components!\n";
     }
     }
 
 
   default:
   default: