Browse Source

fix crash with bam version upgrade

David Rose 13 years ago
parent
commit
61ceee2e73
1 changed files with 4 additions and 1 deletions
  1. 4 1
      panda/src/gobj/texture.cxx

+ 4 - 1
panda/src/gobj/texture.cxx

@@ -7234,7 +7234,10 @@ make_this_from_bam(const FactoryParams &params) {
       texture_type = TT_cube_map;
       texture_type = TT_cube_map;
     }
     }
   }
   }
-  bool has_read_mipmaps = scan.get_bool();
+  bool has_read_mipmaps = false;
+  if (manager->get_file_minor_ver() >= 32) {
+    has_read_mipmaps = scan.get_bool();
+  }
 
 
   Texture *me = NULL;
   Texture *me = NULL;
   if (has_rawdata) {
   if (has_rawdata) {