diff --git a/libConsole/cross_getch.c b/libConsole/cross_getch.c --- 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; }