Make file extension matching case-insensitive
This commit is contained in:
parent
f8486561fa
commit
e03cde5840
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ namespace Ryujinx
|
||||||
}
|
}
|
||||||
else if (File.Exists(args[0]))
|
else if (File.Exists(args[0]))
|
||||||
{
|
{
|
||||||
switch (Path.GetExtension(args[0]))
|
switch (Path.GetExtension(args[0]).ToLowerInvariant())
|
||||||
{
|
{
|
||||||
case ".xci":
|
case ".xci":
|
||||||
Console.WriteLine("Loading as XCI.");
|
Console.WriteLine("Loading as XCI.");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue