Fix gamedb loading with Turkish locale.

This commit is contained in:
jdpurcell 2015-01-13 02:03:10 +00:00
parent d4155081d2
commit f9da63d71d
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ namespace BizHawk.Emulation.Common
private static void LoadDatabase_Escape(string line, string path)
{
if (!line.ToUpper().StartsWith("#INCLUDE"))
if (!line.ToUpperInvariant().StartsWith("#INCLUDE"))
{
return;
}