From 81475cbe6f8406f38d401ca779676339a950f6a9 Mon Sep 17 00:00:00 2001 From: Anairkoen Schno Date: Fri, 16 Nov 2018 23:35:08 -0600 Subject: [PATCH] Fixed [Press any key to continue] to actually accept any key --- IPA/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPA/Program.cs b/IPA/Program.cs index 83922abf..005f7a7e 100644 --- a/IPA/Program.cs +++ b/IPA/Program.cs @@ -120,7 +120,7 @@ namespace IPA Console.ForegroundColor = ConsoleColor.DarkYellow; Console.WriteLine("[Press any key to continue]"); Console.ResetColor(); - Console.ReadLine(); + Console.ReadKey(); } }