From 9b9256d2cb22fa289c0bab090f36bd1b0bb83833 Mon Sep 17 00:00:00 2001 From: Jan Date: Thu, 21 Nov 2019 01:46:58 +0100 Subject: [PATCH] ZoneCommon: Fix EmblemSet asset struct --- src/ZoneCommon/Game/T6/T6_Assets.h | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/ZoneCommon/Game/T6/T6_Assets.h b/src/ZoneCommon/Game/T6/T6_Assets.h index e8b6bab4..79ef4199 100644 --- a/src/ZoneCommon/Game/T6/T6_Assets.h +++ b/src/ZoneCommon/Game/T6/T6_Assets.h @@ -1878,21 +1878,21 @@ struct EmblemBackground struct EmblemSet { - int colorCount; - int layerCount; - EmblemLayer layers[32]; - int categoryCount; - EmblemCategory categories[16]; - int iconTypeCount; - EmblemIconType iconTypes[16]; - int bgCategoryCount; - EmblemBGCategory bgCategories[16]; - int iconCount; - EmblemIcon icons[1024]; - int backgroundCount; - EmblemBackground backgrounds[550]; - int backgroundLookupCount; - __int16 backgroundLookup[550]; + int colorCount; + int layerCount; + EmblemLayer* layers; + int categoryCount; + EmblemCategory* categories; + int iconTypeCount; + EmblemIconType* iconTypes; + int bgCategoryCount; + EmblemBGCategory* bgCategories; + int iconCount; + EmblemIcon* icons; + int backgroundCount; + EmblemBackground* backgrounds; + int backgroundLookupCount; + __int16* backgroundLookup; }; struct ScriptParseTree