Skip to content

Commit

Permalink
Fix case sensitivity
Browse files Browse the repository at this point in the history
  • Loading branch information
blueskythlikesclouds committed Oct 7, 2018
1 parent 00ef153 commit 04f9952
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/AcbEditor/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ static void Main(string[] args)
try
{
#endif
if (args[0].EndsWith(".acb"))
if (args[0].EndsWith(".acb", StringComparer.OrdinalIgnoreCase))
{
var extractor = new DataExtractor();
extractor.ProgressChanged += OnProgressChanged;
Expand Down
2 changes: 1 addition & 1 deletion Source/CsbEditor/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ static void Main(string[] args)
try
{
#endif
if (args[0].EndsWith(".csb"))
if (args[0].EndsWith(".csb", StringComparer.OrdinalIgnoreCase))
{
var extractor = new DataExtractor();
extractor.ProgressChanged += OnProgressChanged;
Expand Down

0 comments on commit 04f9952

Please sign in to comment.