fixed slashes for linux

This commit is contained in:
MissLavender-LQ
2023-09-28 03:50:29 +01:00
parent f1bb67188d
commit ff9ddee836

View File

@@ -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)