Upgraded jolt version

This commit is contained in:
Antoine Pilote
2023-08-04 17:18:05 -04:00
parent a5ee88cb8e
commit 3b401e7711
3 changed files with 83 additions and 34 deletions

View File

@@ -19,7 +19,7 @@ namespace Nuake {
if (FileSystem::FileExists(path, false))
{
std::string prefabTextContent = FileSystem::ReadFile(path);
newPrefab->Deserialize(prefabTextContent);
newPrefab->Deserialize(json::parse(prefabTextContent));
}
return newPrefab;