2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-10 19:07:46 +00:00
Various fixes
This commit is contained in:
2016-01-18 21:32:34 -08:00
parent 334a7875c1
commit 8a454a4fb2
7 changed files with 553 additions and 30 deletions

View File

@@ -10,6 +10,7 @@
#include "ANCS.hpp"
#include "MREA.hpp"
#include "MAPA.hpp"
#include "FRME.hpp"
namespace Retro
{
@@ -268,6 +269,8 @@ ResExtractor<PAKBridge> PAKBridge::LookupExtractor(const PAK::Entry& entry)
return {SCAN::Extract, nullptr, {_S(".yaml")}, 0, SCAN::Name};
case SBIG('TXTR'):
return {TXTR::Extract, nullptr, {_S(".png")}};
case SBIG('FRME'):
return {nullptr, FRME::Extract, {_S(".blend")}, 2};
case SBIG('CMDL'):
return {nullptr, CMDL::Extract, {_S(".blend")}, 1, CMDL::Name};
case SBIG('ANCS'):