mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-06 01:50:38 +00:00
Do string insensitive compare for 32-bit layer as well
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user