mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 17:04:55 +00:00
NOD API changes
This commit is contained in:
@@ -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
Submodule nod updated: 55ed73b9bb...41148a1368
Reference in New Issue
Block a user