Correction. Would only be noticed in practice if there are more than 255

types in a package. Which is unlikely.



git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2726 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
Meep-Eep
2007-04-07 22:26:44 +00:00
parent 4d376e5104
commit bdd3d90d66
+2 -2
View File
@@ -73,12 +73,12 @@ typedef struct {
} package_desc; } package_desc;
typedef struct { typedef struct {
uint8 res_flags;
uint32 packmem_list_offs; uint32 packmem_list_offs;
uint32 path_list_offs; uint32 path_list_offs;
uint32 file_list_offs; uint32 file_list_offs;
uint16 num_packages; uint16 num_packages;
uint8 num_types; uint16 num_types;
uint8 res_flags;
uint16 header_len; uint16 header_len;
package_desc *package_list; package_desc *package_list;
type_desc *type_list; type_desc *type_list;