Skip to content
This repository has been archived by the owner on Oct 26, 2024. It is now read-only.

Commit

Permalink
Fix args bs in decoder
Browse files Browse the repository at this point in the history
  • Loading branch information
Delofon committed May 15, 2022
1 parent 30ebc29 commit 31daae4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QOIDecoder/DecoderProgram.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ static void Main(string[] args)
{
if (arg.StartsWith('-'))
{
foreach (char opt in args[0].Substring(1))
foreach (char opt in arg.Substring(1))
{
if (opt == 'h')
{
Expand Down

0 comments on commit 31daae4

Please sign in to comment.