Exclude bitmap3 from MP3's PATH

This commit is contained in:
Jack Andersen 2020-04-08 20:03:52 -10:00
parent e4ade45fd1
commit a668a623cb
2 changed files with 7 additions and 2 deletions

View File

@ -77,7 +77,12 @@ struct AT_SPECIALIZE_PARMS(DataSpec::DNAMP1::PAKBridge, DataSpec::DNAMP2::PAKBri
Vector<atUint32, AT_DNA_COUNT((((regionCount * (regionCount - 1)) / 2) + 31) / 32)> bitmap1;
Vector<atUint32, AT_DNA_COUNT(bitmap1.size())> bitmap2;
Vector<atUint32, AT_DNA_COUNT(((((regionCount * regionCount) + 31) / 32) - bitmap1.size()) * 2)> bitmap3;
/* Unused in all games, removed in MP3 */
Vector<atUint32, AT_DNA_COUNT(std::is_same_v<PAKBridge, DataSpec::DNAMP3::PAKBridge>
? 0
: (((((regionCount * regionCount) + 31) / 32) - bitmap1.size()) * 2))>
bitmap3;
Value<atUint32> octreeRegionLookupCount;
Vector<atUint32, AT_DNA_COUNT(octreeRegionLookupCount)> octreeRegionLookup;

2
hecl

@ -1 +1 @@
Subproject commit 191ffdc8e06c20e8831e383be5431789d9d4b8fb
Subproject commit b3d91f520ad3a9429b0116f9b531ec12b2e71809