From bdd3d90d667a85443f4f3e6b0c6a2594dd7b3815 Mon Sep 17 00:00:00 2001 From: Meep-Eep Date: Sat, 7 Apr 2007 22:26:44 +0000 Subject: [PATCH] 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 --- tools/pkg/unpkg.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/pkg/unpkg.h b/tools/pkg/unpkg.h index 43b547422..999c9d601 100644 --- a/tools/pkg/unpkg.h +++ b/tools/pkg/unpkg.h @@ -73,12 +73,12 @@ typedef struct { } package_desc; typedef struct { + uint8 res_flags; uint32 packmem_list_offs; uint32 path_list_offs; uint32 file_list_offs; uint16 num_packages; - uint8 num_types; - uint8 res_flags; + uint16 num_types; uint16 header_len; package_desc *package_list; type_desc *type_list;