aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2019-07-13 14:53:13 +0200
committerShauren <shauren.trinity@gmail.com>2019-07-13 14:53:40 +0200
commit479b029b4eb3ce4dcce11055d6e08477429009ad (patch)
treef25972225eb6b1ee76f420e0020818397809e571
parentf8cba63eb7044ed95f8b8f2fdcf0bb53abf93642 (diff)
Tools/mapextractor: Mark MPHD/MAID as interesting chunks
-rw-r--r--src/tools/map_extractor/loadlib.cpp4
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)