enabling scrolling to the screen

This commit is contained in:
Thiago Auler dos Santos 2017-11-26 02:30:17 -02:00
parent e37307986f
commit 1baadbdd82
1 changed files with 3 additions and 0 deletions

View File

@ -7,7 +7,10 @@ void io_init()
initscr();
noecho();
cbreak();
scrollok(stdscr, TRUE);
nodelay(stdscr, TRUE);
keypad(stdscr, TRUE);
keyboard_control = 0x00;
}