From fe33e75c1bfbf24e8d576c897f9951fdef07bfa0 Mon Sep 17 00:00:00 2001 From: zeromus Date: Mon, 8 Aug 2011 06:14:05 +0000 Subject: [PATCH] disc-cuefile wave-fulfillment is a case-insensitive process --- BizHawk.Emulation/DiscSystem/Decoding.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation/DiscSystem/Decoding.cs b/BizHawk.Emulation/DiscSystem/Decoding.cs index bb41bdb602..d80abf34c2 100644 --- a/BizHawk.Emulation/DiscSystem/Decoding.cs +++ b/BizHawk.Emulation/DiscSystem/Decoding.cs @@ -128,7 +128,7 @@ namespace BizHawk.DiscSystem //then look for any other type foreach (var fi in fis) { - if (Path.GetFileNameWithoutExtension(fi.FullName) == basePath) + if (Path.GetFileNameWithoutExtension(fi.FullName).ToUpper() == basePath.ToUpper()) { if (CheckForAudio(fi.FullName)) return fi.FullName;