Do string insensitive compare for 32-bit layer as well

This commit is contained in:
baldurk
2016-02-05 00:28:51 +01:00
parent 90b1058f9d
commit 0d768bec64
+1 -1
View File
@@ -270,7 +270,7 @@ namespace renderdocui.Code
foreach (var n in names)
{
if (Path.GetFullPath(n) == myJSON)
if (String.Compare(Path.GetFullPath(n), myJSON, StringComparison.CurrentCultureIgnoreCase) == 0)
{
thisRegistered = true;
}