diff --git a/Nuake/src/Core/FileSystem.cpp b/Nuake/src/Core/FileSystem.cpp index cc2b525a..92147225 100644 --- a/Nuake/src/Core/FileSystem.cpp +++ b/Nuake/src/Core/FileSystem.cpp @@ -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)