2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-13 18:06:09 +00:00

Use template function for SAVW

This commit is contained in:
2016-07-23 19:07:36 -07:00
parent b188c4892a
commit 162994ca39
7 changed files with 16 additions and 33 deletions

View File

@@ -232,7 +232,7 @@ ResExtractor<PAKBridge> PAKBridge::LookupExtractor(const PAK::Entry& entry)
case SBIG('TXTR'):
return {TXTR::Extract, nullptr, {_S(".png")}};
case SBIG('SAVW'):
return {DNAMP3::ExtractSAVW, nullptr, {_S(".yaml")}};
return {SAVWCommon::ExtractSAVW<SAVW>, nullptr, {_S(".yaml")}};
case SBIG('CMDL'):
return {nullptr, CMDL::Extract, {_S(".blend")}, 1};
case SBIG('CHAR'):