1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00

KeyUp fix

This commit is contained in:
Brian Fiete 2020-05-04 09:11:48 -07:00
parent 63e51ec4d8
commit f998ba4b45

View file

@ -214,7 +214,7 @@ namespace SDL2
case .KeyDown:
KeyDown(event.key);
case .KeyUp:
KeyDown(event.key);
KeyUp(event.key);
case .MouseButtonDown:
MouseDown(event.button);
case .MouseButtonUp: