From f295a52ed9981232b5b97906dba952016f52449b Mon Sep 17 00:00:00 2001 From: Hisham Date: Tue, 8 Mar 2016 12:23:18 -0300 Subject: Avoid overlapping key values defined by curses. Closes #438. --- CRT.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'CRT.h') diff --git a/CRT.h b/CRT.h index ba10699e..8753da76 100644 --- a/CRT.h +++ b/CRT.h @@ -115,7 +115,7 @@ void CRT_fatalError(const char* note) __attribute__ ((noreturn)); void CRT_handleSIGSEGV(int sgn); -#define KEY_ALT(x) KEY_F(60) + (x - 'A') +#define KEY_ALT(x) KEY_F(64) + (x - 'A') extern const char *CRT_treeStrAscii[TREE_STR_COUNT]; -- cgit v1.2.3