ui: replace ESCDELAY constant with set_escdelay function #360

This commit is contained in:
Kaian 2021-05-24 14:33:58 +02:00
parent 89d40264cf
commit 9755e15814
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ ncurses_init()
// Hide the cursor
curs_set(0);
// Only delay ESC Sequences 25 ms (we dont want Escape sequences)
ESCDELAY = 25;
set_escdelay(25);
// Redefine some keys
term = getenv("TERM");