Support tabs for indentation in cue sheets

So far, cue sheets using tabs for indentation could not be parsed and
an error message was shown.

- Fixes #65
This commit is contained in:
Wolfgang Stöggl
2020-11-28 06:07:49 +01:00
parent 6fcd5b92d7
commit bf67b53ef4

View File

@@ -28,7 +28,7 @@ namespace CUETools.Processor
while (true)
{
while ((start < lineLen) && (line[start] == ' '))
while ((start < lineLen) && ((line[start] == ' ') || (line[start] == '\t')))
{
start++;
}