Commit 3283c6d2 authored by Hisham Muhammad's avatar Hisham Muhammad
Browse files

Merge pull request #441 from Explorer09/issue-438

Avoid overlapping key values defined by curses (Real fix).
parents f295a52e 8a928c8b
......@@ -125,7 +125,7 @@ void CRT_fatalError(const char* note) __attribute__ ((noreturn));
void CRT_handleSIGSEGV(int sgn);
#define KEY_ALT(x) KEY_F(64) + (x - 'A')
#define KEY_ALT(x) (KEY_F(64 - 26) + (x - 'A'))
}*/
......
......@@ -115,7 +115,7 @@ void CRT_fatalError(const char* note) __attribute__ ((noreturn));
void CRT_handleSIGSEGV(int sgn);
#define KEY_ALT(x) KEY_F(64) + (x - 'A')
#define KEY_ALT(x) (KEY_F(64 - 26) + (x - 'A'))
extern const char *CRT_treeStrAscii[TREE_STR_COUNT];
......
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