From ff9ddee8369758fa5edd9c98dad43633ab0f8b5e Mon Sep 17 00:00:00 2001 From: MissLavender-LQ Date: Thu, 28 Sep 2023 03:50:29 +0100 Subject: [PATCH] fixed slashes for linux --- Nuake/src/Core/FileSystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Nuake/src/Core/FileSystem.cpp b/Nuake/src/Core/FileSystem.cpp index 974269c3..60f01ea8 100644 --- a/Nuake/src/Core/FileSystem.cpp +++ b/Nuake/src/Core/FileSystem.cpp @@ -142,7 +142,7 @@ namespace Nuake { std::filesystem::path pathObj(fullPath); auto returnvalue = pathObj.parent_path().string(); - return returnvalue + "\\"; + return returnvalue + "/"; } std::string FileSystem::ReadFile(const std::string& path, bool absolute)