- FIxed up `openProject(..., ...)`
This commit is contained in:
Tristan B. Velloza Kildaire 2024-04-20 18:59:34 +02:00
parent 097df237ca
commit 0d1fc46920
1 changed files with 1 additions and 7 deletions

View File

@ -37,9 +37,6 @@ private mixin template BaseFunctions()
return false;
}
// TODO: Read project descriptor and THEN determine the entry point from
// that
JSONValue json;
try
{
@ -52,10 +49,7 @@ private mixin template BaseFunctions()
return false;
}
proj = Project.deserialize(json);
return true;
return Project.deserialize(json, proj);
}
}