Fix path bug by using the right quotes..

This commit is contained in:
Henrik Rydgård 2013-10-20 10:46:23 +02:00
parent be39646223
commit 4b063228f6

View File

@ -30,7 +30,7 @@ static bool ApplyPathStringToComponentsVector(std::vector<std::string> &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;