diff options
author | Shauren <shauren.trinity@gmail.com> | 2019-07-13 14:53:13 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2019-07-13 14:53:40 +0200 |
commit | 479b029b4eb3ce4dcce11055d6e08477429009ad (patch) | |
tree | f25972225eb6b1ee76f420e0020818397809e571 /src | |
parent | f8cba63eb7044ed95f8b8f2fdcf0bb53abf93642 (diff) |
Tools/mapextractor: Mark MPHD/MAID as interesting chunks
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/map_extractor/loadlib.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/map_extractor/loadlib.cpp b/src/tools/map_extractor/loadlib.cpp index 86ddd2f5ba8..04ee35bbb0a 100644 --- a/src/tools/map_extractor/loadlib.cpp +++ b/src/tools/map_extractor/loadlib.cpp @@ -124,7 +124,9 @@ u_map_fcc InterestingChunks[] = { { 'T', 'V', 'C', 'M' } }, { { 'O', 'M', 'W', 'M' } }, { { 'Q', 'L', 'C', 'M' } }, - { { 'O', 'B', 'F', 'M' } } + { { 'O', 'B', 'F', 'M' } }, + { { 'D', 'H', 'P', 'M' } }, + { { 'D', 'I', 'A', 'M' } } }; bool IsInterestingChunk(u_map_fcc const& fcc) |