Parcourir la source

Check getch() against ERR

master
sin il y a 10 ans
Parent
révision
ce599b8e6b
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      noice.c

+ 1
- 1
noice.c Voir le fichier

@@ -359,7 +359,7 @@ readln(void)
getyx(stdscr, y, x);
x0 = x;

while (c = getch()) {
while ((c = getch()) != ERR) {
if (c == KEY_ENTER || c == '\r')
break;
if (c == KEY_BACKSPACE) {


Chargement…
Annuler
Enregistrer