From cb0197d6547d9b65e5e39f7b2ce94618c94a1977 Mon Sep 17 00:00:00 2001 From: Antoine Pilote Date: Wed, 12 Jul 2023 23:02:21 -0400 Subject: [PATCH] Fixed folder --- Nuake/src/Core/FileSystem.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)