mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- 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:
parent
b5c88957f0
commit
1c99e0917e
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue