From bd8cba07d02f56ee1a9e2173ad1711227a5df4b0 Mon Sep 17 00:00:00 2001 From: Antoine Pilote Date: Mon, 2 Oct 2023 01:36:26 -0400 Subject: [PATCH] Changed \\ to / --- 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 4d995c10..989b0cd8 100644 --- a/Nuake/src/Core/FileSystem.cpp +++ b/Nuake/src/Core/FileSystem.cpp @@ -329,7 +329,7 @@ namespace Nuake std::string FileSystem::GetFileNameFromPath(const std::string& path) { - const auto& split = String::Split(path, '\\'); + const auto& split = String::Split(path, '/'); return String::Split(split[split.size() - 1], '.')[0]; }