Support # as separator for groups

This is because Windows doesn't like : in filenames.

Closes #90
This commit is contained in:
Daniel Collin 2014-09-14 09:40:42 +02:00
parent 4830a852fa
commit 23167ffc6f

View File

@ -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;
}