Skip to content

Commit

Permalink
fix: oops, forgot to make the ext variable lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
Notexe committed Feb 9, 2024
1 parent 5c46ec6 commit df8c343
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion G2GFxDataTool/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ static void Main(string[] args)
}
else
{
string ext = Path.GetExtension(options.inputPath);
string ext = Path.GetExtension(options.inputPath).ToLower();
if (ext == ".swf")
{
ScaleformGFxWriter.WriteScaleformGfX(options.inputPath, options.outputPath, options.gfxexportPath, options.baseAssemblyPath, options.verbose);
Expand Down

0 comments on commit df8c343

Please sign in to comment.