disc-cuefile wave-fulfillment is a case-insensitive process

This commit is contained in:
zeromus 2011-08-08 06:14:05 +00:00
parent bde8365563
commit fe33e75c1b
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ namespace BizHawk.DiscSystem
//then look for any other type //then look for any other type
foreach (var fi in fis) foreach (var fi in fis)
{ {
if (Path.GetFileNameWithoutExtension(fi.FullName) == basePath) if (Path.GetFileNameWithoutExtension(fi.FullName).ToUpper() == basePath.ToUpper())
{ {
if (CheckForAudio(fi.FullName)) if (CheckForAudio(fi.FullName))
return fi.FullName; return fi.FullName;