# HG changeset patch # User John "Elwin" Edwards # Date 1488334493 18000 # Node ID a413bc97d3ea066b271534b6234d20e6deb7acd5 # Parent 4ab49e42dd6add7e36d06569f13c93133964c5a9 UltraRogue: fix the arrow keys. The startup sequence now calls keypad() to turn on curses recognition of special keys. diff -r 4ab49e42dd6a -r a413bc97d3ea urogue/main.c --- a/urogue/main.c Sun Feb 26 16:51:29 2017 -0500 +++ b/urogue/main.c Tue Feb 28 21:14:53 2017 -0500 @@ -202,6 +202,7 @@ cw = newwin(LINES, COLS, 0, 0); mw = newwin(LINES, COLS, 0, 0); hw = newwin(LINES, COLS, 0, 0); + keypad(cw, TRUE); if (use_savedir) { if (!restore(file_name))