2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 19:04:56 +00:00

Fix extracting RS5FE.pak

This commit is contained in:
2020-04-09 23:26:27 -07:00
parent 0085f0b16f
commit 5f2ce02b05

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;
}