From 8834dfbc7d113fcbe512709db687860af922bc26 Mon Sep 17 00:00:00 2001 From: helixhorned Date: Sat, 11 Apr 2015 13:53:09 +0000 Subject: [PATCH] SDL2: map SDL_SCANCODE_NONUSBACKSLASH to the same Build code as COMMA. NONUSBACKSLASH is what is generated for the key between the LShift and 'Z' here. The aliasing with the actual ',' key is as with the SDL1.2 build. Fixes the issue reported in http://forums.duke4.net/topic/8029-cant-bind-key-anymore/ git-svn-id: https://svn.eduke32.com/eduke32@5134 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/build/src/sdlkeytrans.c | 1 + 1 file changed, 1 insertion(+) diff --git a/polymer/eduke32/build/src/sdlkeytrans.c b/polymer/eduke32/build/src/sdlkeytrans.c index 9d2148287..e9b4bca79 100644 --- a/polymer/eduke32/build/src/sdlkeytrans.c +++ b/polymer/eduke32/build/src/sdlkeytrans.c @@ -153,6 +153,7 @@ static int32_t buildkeytranslationtable(void) MAP(SDL_SCANCODE_ESCAPE, 0x1); MAP(SDL_SCANCODE_SPACE, 0x39); MAP(SDL_SCANCODE_COMMA, 0x33); + MAP(SDL_SCANCODE_NONUSBACKSLASH, 0x33); MAP(SDL_SCANCODE_MINUS, 0xc); MAP(SDL_SCANCODE_PERIOD, 0x34); MAP(SDL_SCANCODE_SLASH, 0x35);