- 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

View file

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