[rott-commits] r248 - trunk/rott

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Fri Jun 12 08:30:40 EDT 2009


Author: fabian
Date: 2009-06-12 08:30:39 -0400 (Fri, 12 Jun 2009)
New Revision: 248

Modified:
   trunk/rott/rt_in.c
Log:
Accept the German eszett as a backslash key.


Modified: trunk/rott/rt_in.c
===================================================================
--- trunk/rott/rt_in.c	2009-06-08 11:04:26 UTC (rev 247)
+++ trunk/rott/rt_in.c	2009-06-12 12:30:39 UTC (rev 248)
@@ -1083,6 +1083,8 @@
     scancodes[SDLK_LSHIFT]          = sc_RShift; /* sc_LShift */
     
     scancodes[SDLK_BACKSLASH]       = 0x2B;
+    /* Accept the German eszett as a backslash key */
+    scancodes[SDLK_WORLD_63]        = 0x2B;
     scancodes[SDLK_z]               = sc_Z;
     scancodes[SDLK_x]               = sc_X;
     scancodes[SDLK_c]               = sc_C;



More information about the rott-commits mailing list