Support # as separator for groups
This is because Windows doesn't like : in filenames. Closes #90
This commit is contained in:
parent
4830a852fa
commit
23167ffc6f
@ -52,7 +52,7 @@ static int findSeparator(const char* name)
|
||||
|
||||
for (i = 0; i < len; ++i)
|
||||
{
|
||||
if (name[i] == ':')
|
||||
if (name[i] == ':' || name[i] == '#')
|
||||
return i;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user