2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 17:04:55 +00:00

Missed path, I'm bad at this apparently

This commit is contained in:
2021-05-30 23:36:16 -07:00
parent 20f40ef07f
commit 1a1c008239
2 changed files with 2 additions and 2 deletions

View File

@@ -358,7 +358,7 @@ bool MLVL::Cook(const hecl::ProjectPath& outPath, const hecl::ProjectPath& inPat
} }
} }
hecl::ProjectPath pathPath = GetPathBeginsWith(areaDEnum, area.path, _SYS_STR("!path_")); hecl::ProjectPath pathPath = GetPathBeginsWith(areaDEnum, area.path, _SYS_STR("!path"));
metaforce::SObjectTag pathTag = g_curSpec->buildTagFromPath(pathPath); metaforce::SObjectTag pathTag = g_curSpec->buildTagFromPath(pathPath);
if (pathTag.id.IsValid()) { if (pathTag.id.IsValid()) {
areaOut.deps.emplace_back(pathTag.id.Value(), pathTag.type); areaOut.deps.emplace_back(pathTag.id.Value(), pathTag.type);

View File

@@ -731,7 +731,7 @@ bool MREA::Cook(const hecl::ProjectPath& outPath, const hecl::ProjectPath& inPat
/* PATH */ /* PATH */
{ {
const hecl::ProjectPath pathPath = GetPathBeginsWith(inPath.getParentPath(), _SYS_STR("!path_")); const hecl::ProjectPath pathPath = GetPathBeginsWith(inPath.getParentPath(), _SYS_STR("!path"));
UniqueID32 pathId; UniqueID32 pathId;
if (pathPath.isFile()) if (pathPath.isFile())
pathId = pathPath; pathId = pathPath;