2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 22:27:41 +00:00

Experimental Wii de Asobu release support

This commit is contained in:
Jack Andersen
2017-08-18 08:33:18 -10:00
parent bd1a1126ce
commit b1e4e1a363
4 changed files with 40 additions and 12 deletions

View File

@@ -336,7 +336,11 @@ struct SpecMP1 : SpecBase
/* Iterate PAKs and build level options */
nod::Node::DirectoryIterator mp1It = root.find("MP1");
if (mp1It == root.end())
return false;
{
mp1It = root.find("MP1JPN");
if (mp1It == root.end())
return false;
}
buildPaks(*mp1It, mp1args, rep);
return true;