Skip to content

Commit

Permalink
Fixed parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
HW12Dev committed Sep 18, 2023
1 parent 72e75b6 commit 2e35029
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wwise_pd3/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,10 @@ public static void Main(string[] args)

if (encoding)
{
EncodeToWem(args[2], args[3]);
EncodeToWem(args[1], args[2]);
} else
{
DecodeFromWEM(args[2], args[3]);
DecodeFromWEM(args[1], args[2]);
//Console.WriteLine("Decoding is not supported");
}
}
Expand Down

0 comments on commit 2e35029

Please sign in to comment.