2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-13 03:26:08 +00:00

Initial MP3 MREA support

This commit is contained in:
Jack Andersen
2015-09-19 20:09:27 -10:00
parent 604484ac69
commit bee7388242
7 changed files with 465 additions and 26 deletions

View File

@@ -5,6 +5,7 @@
#include "STRG.hpp"
#include "MLVL.hpp"
#include "CMDL.hpp"
#include "MREA.hpp"
#include "../DNACommon/TXTR.hpp"
namespace Retro
@@ -73,6 +74,8 @@ ResExtractor<PAKBridge> PAKBridge::LookupExtractor(const PAK::Entry& entry)
return {TXTR::Extract, nullptr, {_S(".png")}};
case SBIG('CMDL'):
return {nullptr, CMDL::Extract, {_S(".blend")}, 1};
case SBIG('MREA'):
return {nullptr, MREA::Extract, {_S(".blend")}, 2};
}
return {};
}