- do not treat the ':' as a path separator.

The cases where it really is needed have special handling for it, in all others it causes more problems than it solves.
This commit is contained in:
Christoph Oelckers 2020-04-19 12:24:12 +02:00
parent b5c88957f0
commit 1c99e0917e
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ static inline bool IsSeperator (int c)
if (c == '/')
return true;
#ifdef _WIN32
if (c == '\\' || c == ':')
if (c == '\\')
return true;
#endif
return false;