From: divverent Date: Wed, 30 May 2007 08:52:15 +0000 (+0000) Subject: OS X: make unknown char/keycode just a DPrint, reportedly some mouse drivers work... X-Git-Tag: xonotic-v0.1.0preview~3078 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=01aff3ddcd10285c7196459c8ced88c2a027f064;p=xonotic%2Fdarkplaces.git OS X: make unknown char/keycode just a DPrint, reportedly some mouse drivers work fine apart from that they also send weird key codes git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7382 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/vid_agl.c b/vid_agl.c index 194b4153..944f9559 100644 --- a/vid_agl.c +++ b/vid_agl.c @@ -907,7 +907,7 @@ static void Handle_Key(unsigned char charcode, UInt32 mackeycode, qboolean keypr ascii = charcode; } else - Con_Printf(">> UNKNOWN char/keycode: %d/%u <<\n", charcode, (unsigned) mackeycode); + Con_DPrintf(">> UNKNOWN char/keycode: %d/%u <<\n", charcode, (unsigned) mackeycode); } }