From 651a44762b15979c101b7b3bc4b9d2bed16cc2a1 Mon Sep 17 00:00:00 2001 From: Sem van der Hoeven Date: Wed, 7 Oct 2020 15:15:42 +0200 Subject: [PATCH] input test --- Client/Client.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Client/Client.cs b/Client/Client.cs index dc6fa20..e6a62b4 100644 --- a/Client/Client.cs +++ b/Client/Client.cs @@ -48,8 +48,9 @@ namespace Client private void retryEngineConnection() { Console.WriteLine("-- Could not connect to the VR engine. Please make sure you are running the simulation!"); - Console.WriteLine("-- Press any key to retry connecting to the VR engine."); - Console.ReadKey(); + Console.WriteLine("-- Press ENTER to retry connecting to the VR engine."); + Console.WriteLine("-- Press 'q' and then ENTER to not connect to the VR engine"); + Console.WriteLine(Console.Read()); engineConnection.CreateConnection(); }