mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 10:04:24 +00:00
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:
@@ -28,7 +28,7 @@ namespace CUETools.Processor
|
||||
|
||||
while (true)
|
||||
{
|
||||
while ((start < lineLen) && (line[start] == ' '))
|
||||
while ((start < lineLen) && ((line[start] == ' ') || (line[start] == '\t')))
|
||||
{
|
||||
start++;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user