From 22e11ed4c061c7c35d74a83c3be0f1183340810d Mon Sep 17 00:00:00 2001 From: Daniel Collin Date: Sun, 14 Sep 2014 09:38:25 +0200 Subject: [PATCH] Supports # as separator for groups This is because Windows barfs when exporting filenames with : in them. --- ogl_editor/src/TrackData.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ogl_editor/src/TrackData.c b/ogl_editor/src/TrackData.c index 8e419fb..cf7445a 100644 --- a/ogl_editor/src/TrackData.c +++ b/ogl_editor/src/TrackData.c @@ -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; }