2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 21:47:59 +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

@@ -204,7 +204,11 @@ struct SpecMP2 : SpecBase
/* Iterate PAKs and build level options */
nod::Node::DirectoryIterator mp2It = root.find("MP2");
if (mp2It == root.end())
return false;
{
mp2It = root.find("MP2JPN");
if (mp2It == root.end())
return false;
}
buildPaks(*mp2It, mp2args, rep);
return true;