Browse Source

Fixed [Press any key to continue] to actually accept any key

pull/1/head
Anairkoen Schno 5 years ago
parent
commit
81475cbe6f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      IPA/Program.cs

+ 1
- 1
IPA/Program.cs View File

@ -120,7 +120,7 @@ namespace IPA
Console.ForegroundColor = ConsoleColor.DarkYellow;
Console.WriteLine("[Press any key to continue]");
Console.ResetColor();
Console.ReadLine();
Console.ReadKey();
}
}


Loading…
Cancel
Save