Skip to content

Commit

Permalink
fix: 纠正 HOME 键和 END 键的键码 (#199)
Browse files Browse the repository at this point in the history
  • Loading branch information
yixy-only authored Jun 6, 2024
1 parent 529ee61 commit 4c7c52c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/ege.h
Original file line number Diff line number Diff line change
Expand Up @@ -506,8 +506,8 @@ typedef enum key_code_e

key_pageup = 0x21,
key_pagedown = 0x22,
key_home = 0x23,
key_end = 0x24,
key_end = 0x23,
key_home = 0x24,

key_left = 0x25,
key_up = 0x26,
Expand Down

0 comments on commit 4c7c52c

Please sign in to comment.