1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Fixed 'UP' scancode

This commit is contained in:
Brian Fiete 2020-07-14 10:51:37 -07:00 committed by James Orson
parent 1aa18100de
commit 1f192ef97c

View file

@ -3379,7 +3379,7 @@ namespace SDL2
RIGHT = (int)Scancode.Right | SCANCODE_MASK,
LEFT = (int)Scancode.Left | 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,
KP_DIVIDE = (int)Scancode.KpDivide | SCANCODE_MASK,