From: nyov Date: Sat, 28 Apr 2012 21:30:44 +0000 (+0200) Subject: WGL doesn't work with ctrl+alt+key, will look into that X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=eeb1f1b9dc2ec25514069d3612c6a805836ed14b;p=xonotic%2Fdarkplaces.git WGL doesn't work with ctrl+alt+key, will look into that --- 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;