Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Manager/EmulatorManager.cs')
-rw-r--r--Manager/EmulatorManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Manager/EmulatorManager.cs b/Manager/EmulatorManager.cs
index 2a7b45e3..1c15e7ea 100644
--- a/Manager/EmulatorManager.cs
+++ b/Manager/EmulatorManager.cs
@@ -185,7 +185,7 @@ namespace com.clusterrr.hakchi_gui.Manager
{
foreach (string ext in sde.Extensions)
{
- if (ext == extension)
+ if (ext.ToLower() == extension.ToLower())
{
ret = true;
break;