mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
fixes
This commit is contained in:
@@ -837,6 +837,8 @@ namespace JDP {
|
||||
|
||||
private static int WordLength(string text, int pos)
|
||||
{
|
||||
if (pos >= text.Length)
|
||||
return 1;
|
||||
if ((text[pos] >= 'a' && text[pos] <= 'z') ||
|
||||
(text[pos] >= 'A' && text[pos] <= 'Z') ||
|
||||
(text[pos] == '_'))
|
||||
|
||||
Reference in New Issue
Block a user