Merge branch 'main' into NK-103-Camera-corrupted-transform-2

This commit is contained in:
Antoine Pilote
2023-07-12 23:04:22 -04:00

View File

@@ -127,7 +127,8 @@ namespace Nuake
std::string FileSystem::GetParentPath(const std::string& fullPath)
{
std::filesystem::path pathObj(fullPath);
return pathObj.parent_path().string();
auto returnvalue = pathObj.parent_path().string();
return returnvalue + "\\";
}
std::string FileSystem::ReadFile(const std::string& path, bool absolute)