mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 21:39:52 +00:00
Fix path bug by using the right quotes..
This commit is contained in:
parent
be39646223
commit
4b063228f6
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user