2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 21:51:22 +00:00

DNAMP3: Fix MP1FE extraction for MP1 Wii

This commit is contained in:
Luke Street 2020-09-17 18:43:18 -04:00
parent a3790c983d
commit 25dabe8bc3

View File

@ -25,7 +25,8 @@ static bool GetNoShare(std::string_view name) {
std::string lowerName(name); std::string lowerName(name);
std::transform(lowerName.begin(), lowerName.end(), lowerName.begin(), tolower); std::transform(lowerName.begin(), lowerName.end(), lowerName.begin(), tolower);
return !lowerName.starts_with("metroid"sv) && !lowerName.starts_with("frontend"sv) && return !lowerName.starts_with("metroid"sv) && !lowerName.starts_with("frontend"sv) &&
!lowerName.starts_with("rs5fe"sv) && !lowerName.starts_with("universearea"sv); !lowerName.starts_with("rs5fe"sv) && !lowerName.starts_with("universearea"sv) &&
!lowerName.starts_with("mp1fe"sv);
} }
PAKBridge::PAKBridge(const nod::Node& node, bool doExtract) PAKBridge::PAKBridge(const nod::Node& node, bool doExtract)