From afb7b469d379edc23829d45c38f19853033325e2 Mon Sep 17 00:00:00 2001 From: Avinash Sonawane Date: Tue, 24 Oct 2023 12:24:43 +0530 Subject: [PATCH] Replace raw number by its name PR #4373 Signed-off-by: Romain Vimont --- app/src/usb/hid_keyboard.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/usb/hid_keyboard.c b/app/src/usb/hid_keyboard.c index a12fbf3b..e717006a 100644 --- a/app/src/usb/hid_keyboard.c +++ b/app/src/usb/hid_keyboard.c @@ -27,7 +27,8 @@ // keyboard support, though OS could support more keys via modifying the report // desc. 6 should be enough for scrcpy. #define HID_KEYBOARD_MAX_KEYS 6 -#define HID_KEYBOARD_EVENT_SIZE (2 + HID_KEYBOARD_MAX_KEYS) +#define HID_KEYBOARD_EVENT_SIZE \ + (HID_KEYBOARD_INDEX_KEYS + HID_KEYBOARD_MAX_KEYS) #define HID_RESERVED 0x00 #define HID_ERROR_ROLL_OVER 0x01