David Rose 22 years ago
parent
commit
8e132cb763

+ 1 - 0
pandatool/src/eggcharbase/eggMatrixTablePointer.cxx

@@ -93,6 +93,7 @@ extend_to(int num_frames) {
 
 
   while (num_rows < num_frames) {
   while (num_rows < num_frames) {
     _xform->add_data(last_mat);
     _xform->add_data(last_mat);
+    num_rows++;
   }
   }
 }
 }
 
 

+ 1 - 0
pandatool/src/eggcharbase/eggScalarTablePointer.cxx

@@ -65,6 +65,7 @@ extend_to(int num_frames) {
 
 
   while (num_rows < num_frames) {
   while (num_rows < num_frames) {
     _data->add_data(last_value);
     _data->add_data(last_value);
+    num_rows++;
   }
   }
 }
 }