r161 - trunk/code/unix
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Fri Oct 14 19:00:39 EDT 2005
Author: tma
Date: 2005-10-14 19:00:39 -0400 (Fri, 14 Oct 2005)
New Revision: 161
Modified:
trunk/code/unix/sdl_glimp.c
Log:
* Added a little hack to support the console key on french keyboards
Modified: trunk/code/unix/sdl_glimp.c
===================================================================
--- trunk/code/unix/sdl_glimp.c 2005-10-14 22:58:28 UTC (rev 160)
+++ trunk/code/unix/sdl_glimp.c 2005-10-14 23:00:39 UTC (rev 161)
@@ -213,6 +213,8 @@
case SDLK_KP_PLUS: *key = K_KP_PLUS; break;
case SDLK_KP_MINUS: *key = K_KP_MINUS; break;
case SDLK_KP_DIVIDE: *key = K_KP_SLASH; break;
+
+ case SDLK_WORLD_18: *key = '~'; break; // hack for french keyboards
default: break;
}
More information about the quake3-commits
mailing list