This repository has been archived by the owner. It is now read-only.
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Added numlock support
- Loading branch information
Showing
with
9 additions
and
0 deletions.
-
+1
−0
src/video/cocoa/SDL_cocoakeyboard.h
-
+8
−0
src/video/cocoa/SDL_cocoakeyboard.m
|
@@ -25,6 +25,7 @@ |
|
|
#define _SDL_cocoakeyboard_h |
|
|
|
|
|
extern void Cocoa_InitKeyboard(_THIS); |
|
|
extern void Cocoa_HandleKeyEvent(_THIS, NSEvent *event); |
|
|
extern void Cocoa_QuitKeyboard(_THIS); |
|
|
|
|
|
#endif /* _SDL_cocoakeyboard_h */ |
|
|
|
@@ -423,6 +423,14 @@ |
|
|
SDL_SendKeyboardKey(keyboard, SDL_PRESSED, (Uint8)scancode, SDLK_CAPSLOCK); |
|
|
SDL_SendKeyboardKey(keyboard, SDL_RELEASED, (Uint8)scancode, SDLK_CAPSLOCK); |
|
|
} |
|
|
|
|
|
oldMask = oldMods & NSNumericPadKeyMask; |
|
|
newMask = newMods & NSNumericPadKeyMask; |
|
|
|
|
|
if (oldMask != newMask) { |
|
|
SDL_SendKeyboardKey(keyboard, SDL_PRESSED, (Uint8)scancode, SDLK_NUMLOCK); |
|
|
SDL_SendKeyboardKey(keyboard, SDL_RELEASED, (Uint8)scancode, SDLK_NUMLOCK); |
|
|
} |
|
|
} |
|
|
|
|
|
/* This function will handle the modifier keys and also determine the |
|
|
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.