Skip to content

Commit

Permalink
fix: console ui format incorrect
Browse files Browse the repository at this point in the history
  • Loading branch information
Auleiy committed Aug 22, 2024
1 parent 38fb86f commit a9a3993
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
Console.Write("转换CUR还是ANI?[C/a]");
if (Console.ReadKey().Key == ConsoleKey.A)
ConsoleKey k = Console.ReadKey().Key;
Console.WriteLine();
if (k == ConsoleKey.A)
Ani.Convert();
Cur.Convert();

0 comments on commit a9a3993

Please sign in to comment.