Mac: Whoops, lost legit Caps lock keypress events. Fixed.

Ryan C. Gordon 2015-12-28 13:30:58 -05:00
parent fd6b435c6a
commit 51c1d69d13
1 changed files with 2 additions and 1 deletions

View File

@ -341,7 +341,8 @@ HandleCapsLock(unsigned short scancode,
newMask = newMods & NSAlphaShiftKeyMask;
if (oldMask != newMask) {
SDL_ToggleModState(KMOD_CAPS, newMask != 0);
SDL_SendKeyboardKey(SDL_PRESSED, SDL_SCANCODE_CAPSLOCK);
SDL_SendKeyboardKey(SDL_RELEASED, SDL_SCANCODE_CAPSLOCK);
}
}