From 4b063228f6b206ee6fb0dc4e3223bc782012957e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Sun, 20 Oct 2013 10:46:23 +0200 Subject: [PATCH] Fix path bug by using the right quotes.. --- Core/FileSystems/MetaFileSystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/FileSystems/MetaFileSystem.cpp b/Core/FileSystems/MetaFileSystem.cpp index 5cb50c7e01..898af97f41 100644 --- a/Core/FileSystems/MetaFileSystem.cpp +++ b/Core/FileSystems/MetaFileSystem.cpp @@ -30,7 +30,7 @@ static bool ApplyPathStringToComponentsVector(std::vector &vector, while (start < len) { // TODO: This should only be done for ms0:/ etc. - size_t i = pathString.find_first_of('/\\', start); + size_t i = pathString.find_first_of("/\\", start); if (i == std::string::npos) i = len;