mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
fixes
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>JDP</RootNamespace>
|
||||
<AssemblyName>CUETools</AssemblyName>
|
||||
<ApplicationIcon>Resources\cue.ico</ApplicationIcon>
|
||||
<ApplicationIcon>cue2.ico</ApplicationIcon>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
@@ -256,6 +256,7 @@
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Resources\accuraterip.jpg" />
|
||||
<Content Include="cue2.ico" />
|
||||
<Content Include="Resources\accuraterip_16.bmp" />
|
||||
<None Include="Resources\ape.ico" />
|
||||
<Content Include="Resources\AR.ico" />
|
||||
|
||||
@@ -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