Browse Source

Both shift keys work in the original

pull/25/head
Anders Jenbo 7 years ago
parent
commit
3a775c739f
  1. 3
      Stub/miniwin_msg_sdl.cpp

3
Stub/miniwin_msg_sdl.cpp

@ -59,9 +59,8 @@ static int translate_sdl_key(SDL_Keysym key)
case SDLK_COMMA:
return VK_OEM_COMMA;
case SDLK_LSHIFT:
return VK_SHIFT;
case SDLK_RSHIFT:
return VK_SHIFT; // why not?
return VK_SHIFT;
default:
if (sym >= SDLK_a && sym <= SDLK_z) {

Loading…
Cancel
Save