mirror of https://github.com/AxioDL/metaforce.git
Exclude bitmap3 from MP3's PATH
This commit is contained in:
parent
e4ade45fd1
commit
a668a623cb
|
@ -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
2
hecl
|
@ -1 +1 @@
|
|||
Subproject commit 191ffdc8e06c20e8831e383be5431789d9d4b8fb
|
||||
Subproject commit b3d91f520ad3a9429b0116f9b531ec12b2e71809
|
Loading…
Reference in New Issue