2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-15 22:57:02 +00:00

Updated to support MP2 characters

This commit is contained in:
Jack Andersen
2015-08-14 18:12:15 -10:00
parent b5d96f7040
commit 3c5b5fd39a
19 changed files with 1345 additions and 248 deletions

View File

@@ -177,15 +177,15 @@ ResExtractor<PAKBridge> PAKBridge::LookupExtractor(const PAK::Entry& entry)
switch (entry.type)
{
case SBIG('STRG'):
return {STRG::Extract, nullptr, ".yaml"};
return {STRG::Extract, nullptr, {".yaml"}};
case SBIG('TXTR'):
return {TXTR::Extract, nullptr, ".png"};
return {TXTR::Extract, nullptr, {".png"}};
case SBIG('CMDL'):
return {nullptr, CMDL::Extract, ".blend", 2};
return {nullptr, CMDL::Extract, {".blend"}, 2};
case SBIG('ANCS'):
return {nullptr, ANCS::Extract, nullptr, 1};
return {nullptr, ANCS::Extract, {".yaml", ".blend"}, 1};
case SBIG('MLVL'):
return {MLVL::Extract, nullptr, ".yaml"};
return {MLVL::Extract, nullptr, {".yaml"}};
}
return {};
}