mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Fixed 'UP' scancode
This commit is contained in:
parent
1aa18100de
commit
1f192ef97c
1 changed files with 1 additions and 1 deletions
|
@ -3379,7 +3379,7 @@ namespace SDL2
|
||||||
RIGHT = (int)Scancode.Right | SCANCODE_MASK,
|
RIGHT = (int)Scancode.Right | SCANCODE_MASK,
|
||||||
LEFT = (int)Scancode.Left | SCANCODE_MASK,
|
LEFT = (int)Scancode.Left | SCANCODE_MASK,
|
||||||
DOWN = (int)Scancode.Down | SCANCODE_MASK,
|
DOWN = (int)Scancode.Down | SCANCODE_MASK,
|
||||||
UP = (int)Scancode.U | SCANCODE_MASK,
|
UP = (int)Scancode.Up | SCANCODE_MASK,
|
||||||
|
|
||||||
NUMLOCKCLEAR = (int)Scancode.NumLockClear | SCANCODE_MASK,
|
NUMLOCKCLEAR = (int)Scancode.NumLockClear | SCANCODE_MASK,
|
||||||
KP_DIVIDE = (int)Scancode.KpDivide | SCANCODE_MASK,
|
KP_DIVIDE = (int)Scancode.KpDivide | SCANCODE_MASK,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue