mirror of https://github.com/AxioDL/metaforce.git
NOD API changes
This commit is contained in:
parent
7063f2412d
commit
c41427e7f3
|
@ -108,7 +108,7 @@ void SpecBase::doExtract(const ExtractPassInfo& info, FProgress progress)
|
|||
/* Extract root files for repacking later */
|
||||
hecl::ProjectPath outDir(m_project.getProjectWorkingPath(), _S("out"));
|
||||
outDir.makeDirChain(true);
|
||||
nod::ExtractionContext ctx = {true, info.force, nullptr};
|
||||
nod::ExtractionContext ctx = {info.force, nullptr};
|
||||
|
||||
if (!m_standalone)
|
||||
{
|
||||
|
|
|
@ -348,7 +348,7 @@ struct SpecMP1 : SpecBase
|
|||
{
|
||||
m_project.enableDataSpecs({_S("MP1-PC")});
|
||||
|
||||
nod::ExtractionContext ctx = {true, force, nullptr};
|
||||
nod::ExtractionContext ctx = {force, nullptr};
|
||||
|
||||
m_workPath.makeDir();
|
||||
|
||||
|
|
|
@ -212,7 +212,7 @@ struct SpecMP2 : SpecBase
|
|||
|
||||
bool extractFromDisc(nod::DiscBase&, bool force, FProgress progress)
|
||||
{
|
||||
nod::ExtractionContext ctx = {true, force, nullptr};
|
||||
nod::ExtractionContext ctx = {force, nullptr};
|
||||
|
||||
m_workPath.makeDir();
|
||||
|
||||
|
|
|
@ -333,7 +333,7 @@ struct SpecMP3 : SpecBase
|
|||
hecl::SystemString currentTarget = _S("");
|
||||
size_t nodeCount = 0;
|
||||
int prog = 0;
|
||||
nod::ExtractionContext ctx = {true, force,
|
||||
nod::ExtractionContext ctx = {force,
|
||||
[&](const std::string& name, float)
|
||||
{
|
||||
hecl::SystemStringView nameView(name);
|
||||
|
|
2
nod
2
nod
|
@ -1 +1 @@
|
|||
Subproject commit 55ed73b9bb1ec76303a79fd07f80728acbe5a46b
|
||||
Subproject commit 41148a1368f0294addfb5abc5fccdbdfe0c3569b
|
Loading…
Reference in New Issue