diff options
Diffstat (limited to 'code')
-rw-r--r-- | code/unix/sdl_glimp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/code/unix/sdl_glimp.c b/code/unix/sdl_glimp.c index 81855f7..00c180f 100644 --- a/code/unix/sdl_glimp.c +++ b/code/unix/sdl_glimp.c @@ -213,6 +213,8 @@ static const char *XLateKey(SDL_keysym *keysym, int *key) 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; } |