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
1 changed files with 2 additions and 1 deletions

View File

@ -25,7 +25,8 @@ static bool GetNoShare(std::string_view name) {
std::string lowerName(name);
std::transform(lowerName.begin(), lowerName.end(), lowerName.begin(), tolower);
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)