diff options
| author | hathach <[email protected]> | 2021-08-10 16:40:43 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2021-08-10 16:40:43 +0700 |
| commit | 2ea0ef4543ed8a3d127f6354ab3a5ae2a48ec245 (patch) | |
| tree | 5235fb99cc04df72658b0c3ce8df30d86987cd88 | |
| parent | 70b26b561ae56c382167e3d1f77c909918cfada8 (diff) | |
correct newline usage keycode (ENTER 0x28)
| -rw-r--r-- | src/class/hid/hid.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/class/hid/hid.h b/src/class/hid/hid.h index ec14c9c7c..9265a2ede 100644 --- a/src/class/hid/hid.h +++ b/src/class/hid/hid.h @@ -871,10 +871,10 @@ enum {0, 0 }, /* 0x07 */ \ {0, HID_KEY_BACKSPACE }, /* 0x08 Backspace */ \ {0, HID_KEY_TAB }, /* 0x09 Tab */ \ - {0, HID_KEY_RETURN }, /* 0x0A Line Feed */ \ + {0, HID_KEY_ENTER }, /* 0x0A Line Feed */ \ {0, 0 }, /* 0x0B */ \ {0, 0 }, /* 0x0C */ \ - {0, HID_KEY_RETURN }, /* 0x0D CR */ \ + {0, HID_KEY_ENTER }, /* 0x0D CR */ \ {0, 0 }, /* 0x0E */ \ {0, 0 }, /* 0x0F */ \ {0, 0 }, /* 0x10 */ \ |
