mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 08:27:42 +00:00
began doExtract method
This commit is contained in:
@@ -9,6 +9,8 @@
|
||||
namespace Retro
|
||||
{
|
||||
|
||||
static LogVisor::LogModule Log("Retro::SpecMP2");
|
||||
|
||||
struct SpecMP2 : SpecBase
|
||||
{
|
||||
bool checkStandaloneID(const char* id) const
|
||||
@@ -95,7 +97,7 @@ struct SpecMP2 : SpecBase
|
||||
m_orderedPaks[dpak.node.getName()] = &dpak;
|
||||
|
||||
/* Assemble extract report */
|
||||
for (std::pair<std::string, DiscPAK*> item : m_orderedPaks)
|
||||
for (const std::pair<std::string, DiscPAK*>& item : m_orderedPaks)
|
||||
{
|
||||
rep.childOpts.emplace_back();
|
||||
ExtractReport& childRep = rep.childOpts.back();
|
||||
@@ -205,7 +207,8 @@ struct SpecMP2 : SpecBase
|
||||
|
||||
return true;
|
||||
}
|
||||
bool extractFromDisc()
|
||||
|
||||
bool extractFromDisc(NOD::DiscBase& disc, const HECL::Database::Project& project)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user