Commit 515c1d35 authored by Rafaël Carré's avatar Rafaël Carré

correct comments

parent 04526ea8
......@@ -1918,12 +1918,12 @@ static int Open(vlc_object_t *p_this)
if (p_sys->b_color)
start_color_and_pairs(p_intf);
keypad(stdscr, TRUE); /* Don't do NL -> CR/NL */
nonl(); /* Take input chars one at a time */
cbreak(); /* Don't echo */
noecho(); /* Invisible cursor */
curs_set(0); /* Non blocking getch() */
timeout(1000);
keypad(stdscr, TRUE);
nonl(); /* Don't do NL -> CR/NL */
cbreak(); /* Take input chars one at a time */
noecho(); /* Don't echo */
curs_set(0); /* Invisible cursor */
timeout(1000); /* blocking getch() */
clear();
/* Stop printing errors to the console */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment