Skip to content

Commit

Permalink
hid_api: Fix missing HID prefix for a few keys
Browse files Browse the repository at this point in the history
  • Loading branch information
LekKit committed Mar 17, 2024
1 parent a4baaee commit 866f9ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/devices/hid_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,8 @@ PUBLIC void hid_mouse_place(hid_mouse_t* mouse, int32_t x, int32_t y);
#define HID_KEY_ZENKAKUHANKAKU 0x94 // LANG5 (Japanese Zenkaku/Hankaku key)

// Additional keypad keys
#define KEY_KPLEFTPAREN 0xb6 // Keypad (
#define KEY_KPRIGHTPAREN 0xb7 // Keypad )
#define HID_KEY_KPLEFTPAREN 0xb6 // Keypad (
#define HID_KEY_KPRIGHTPAREN 0xb7 // Keypad )

// Modifier keys
#define HID_KEY_LEFTCTRL 0xe0
Expand Down

0 comments on commit 866f9ea

Please sign in to comment.