libConsole/cross_getch.c
changeset 69 b5912e5f899f
parent 53 6b3d7e3418c1
child 77 49e0babccb23
--- a/libConsole/cross_getch.c
+++ b/libConsole/cross_getch.c
@@ -9,9 +9,7 @@
 {
     int ch = -1;
 
-    while (!kbhit ()) {
-        ch = getch ();
-    }
+    ch = getch ();
 
     return ch;
 }