1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-06 16:25:59 +02:00

Fixed 'UP' scancode

This commit is contained in:
Brian Fiete 2020-07-14 10:51:37 -07:00
parent 6232de0aaa
commit 73de7b1fd0

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,