Skip to content

Commit

Permalink
Merge pull request #43 from aaron1a12/master
Browse files Browse the repository at this point in the history
Fixed wrong key codes for arrow keys
  • Loading branch information
getnamo authored May 15, 2020
2 parents 5aae96b + 8548cf8 commit f57e0dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/Blu/Public/BluEye.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ enum EBluSpecialKeys
endkey = 35 UMETA(DisplayName = "End"),
homekey = 36 UMETA(DisplayName = "Home"),
leftarrowkey = 37 UMETA(DisplayName = "Left Arrow"),
rightarrowkey = 38 UMETA(DisplayName = "Right Arrow"),
downarrowkey = 39 UMETA(DisplayName = "Down Arrow"),
uparrowkey = 40 UMETA(DisplayName = "Up Arrow"),
rightarrowkey = 39 UMETA(DisplayName = "Right Arrow"),
downarrowkey = 40 UMETA(DisplayName = "Down Arrow"),
uparrowkey = 38 UMETA(DisplayName = "Up Arrow"),
insertkey = 45 UMETA(DisplayName = "Insert"),
deletekey = 46 UMETA(DisplayName = "Delete"),
numlockkey = 144 UMETA(DisplayName = "Num Lock"),
Expand Down

0 comments on commit f57e0dd

Please sign in to comment.