Fix extracting RS5FE.pak

This commit is contained in:
Phillip Stephens 2020-04-09 23:26:27 -07:00
parent 0085f0b16f
commit 5f2ce02b05
Signed by: Antidote
GPG Key ID: F8BEE4C83DACA60D
1 changed files with 2 additions and 0 deletions

View File

@ -28,6 +28,8 @@ static bool GetNoShare(std::string_view name) {
std::transform(lowerName.begin(), lowerName.end(), lowerName.begin(), tolower);
if (!lowerName.compare(0, 7, "metroid"))
return false;
if (!lowerName.compare(0, 5, "rs5fe"))
return false;
return true;
}