disc-cuefile wave-fulfillment is a case-insensitive process
This commit is contained in:
parent
bde8365563
commit
fe33e75c1b
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue