Skip to content

Commit

Permalink
CWG1270
Browse files Browse the repository at this point in the history
  • Loading branch information
rt committed Feb 20, 2019
1 parent 12317c4 commit 44e62fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rts/Sim/Units/UnitDef.h
Expand Up @@ -218,9 +218,9 @@ struct UnitDef: public SolidObjectDef
///< buildingMask used to disallow construction on certain map squares
std::uint16_t buildingMask;

std::array<char[64], MAX_UNITDEF_EXPGEN_IDS> modelCEGTags = {0};
std::array<char[64], MAX_UNITDEF_EXPGEN_IDS> pieceCEGTags = {0};
std::array<char[64], MAX_UNITDEF_EXPGEN_IDS> crashCEGTags = {0};
std::array<char[64], MAX_UNITDEF_EXPGEN_IDS> modelCEGTags = {{0}};
std::array<char[64], MAX_UNITDEF_EXPGEN_IDS> pieceCEGTags = {{0}};
std::array<char[64], MAX_UNITDEF_EXPGEN_IDS> crashCEGTags = {{0}};

// *ExplGenIDs[0] stores the number of valid CEG's (TODO: privatize)
// valid CEG id's are all in front s.t. they can be randomly sampled
Expand Down

0 comments on commit 44e62fd

Please sign in to comment.