From eeb1f1b9dc2ec25514069d3612c6a805836ed14b Mon Sep 17 00:00:00 2001 From: nyov Date: Sat, 28 Apr 2012 23:30:44 +0200 Subject: [PATCH] WGL doesn't work with ctrl+alt+key, will look into that --- keys.c | 1 + 1 file changed, 1 insertion(+) diff --git a/keys.c b/keys.c index 8108c2a6..367a57a0 100644 --- a/keys.c +++ b/keys.c @@ -1772,6 +1772,7 @@ Key_Message (int key, int unicode) // ctrl+key generates an ascii value < 32 and shows a char from the charmap // nyov: modified to only work as ctrl+alt+key + // (note: doesn't work in windows WGL, ctrl+alt+key is always 0, thanks to terencehill for noticing) if (unicode > 0 && unicode < 32 && utf8_enable.integer && keydown[K_ALT]) unicode = 0xE000 + unicode; -- 2.39.2