Fixed build

This commit is contained in:
Antoine Pilote
2023-07-22 00:23:55 -04:00
parent dcb203a9e9
commit df69d17305
2 changed files with 2 additions and 2 deletions

View File

@@ -70,7 +70,7 @@ void ScriptPanel::Draw(Nuake::Entity entity)
}
else
{
Nuake::Logger::Log("[FileSystem] Cannot create script files that starts with a number.", Nuake::CRITICAL);
Nuake::Logger::Log("Cannot create script files that starts with a number.","fileSystem", Nuake::CRITICAL);
}
}

View File

@@ -195,7 +195,7 @@ namespace Nuake
const std::string projectPath = file->GetAbsolutePath();
if (!scene->Deserialize(FileSystem::ReadFile(projectPath, true)))
{
Logger::Log("Error failed loading scene: " + projectPath, CRITICAL);
Logger::Log("Failed loading scene: " + projectPath,"editor", CRITICAL);
return;
}